JSP Study Notes (4) -- Use of JSP actions

Source: Internet
Author: User

1. This instance mainly tells us how to use JSP actions in JSP code, for example, <JSP: Forward>

2. This instance requires four files: login.jsp,test.jsp, OK .htm,no.htm

3. First, let's take a look at login. jsp.

<HTML>

<Center>

<Form method = get action = "http: // 127.0.0.1: 8000/test. jsp">

Username <input type = text name = username>

<Br>

Password <input type = password name = PASSWORD>

<Br>

<Input type = submit value = "OK">

</Form>

</Center>

</Html>

 

4. The test. JSP code is as follows:

<HTML>

<%

String username = request. getparameter ("username ");

If (username. Trim (). Equals ("ABC "))

{%>

<JSP: Forward page = "OK .html"/>

<%}

Else

{%>

<JSP: Forward page = "no.html"/>

<%}

%>

</Html>

 

5. OK .htmand no.htm are very simple and can be written at will:

<HTML> OK

<HTML> NO

 

6. The configuration is very simple:

Put login.jsp,test.jsp, OK .htm,no.htm IN THE public_html of J2EE. You do not need to start the J2EE deployer. This is a simple method.

 

7. When the user name is ABC, the page is automatically redirected to the OK .htmpage. If the user name is ABC, the page is redirected to the No. HTM page.

 

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.