Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
JSP get Parameter 
 

JSP get Parameter is used to return the value of a request parameter passed as query string and posted data which is encoded in the body of request.

 

JSP get Parameter

                          

JSP get Parameter is used to return the value of a request parameter passed as query string and posted data which is encoded in the body of request.

Syntax JSP get Parameter:

<%= request.getParameter("name") %>

Understand with Example

In this section, you will learn how to get the parameters using the method request.getParameter(). This method is provided by the interface ServletRequest which returns the value of a request parameter as a String, or null if the parameter does not exist. You can see in the given example that we prompt the user to enter the name and address in the provided text fields. Then on clicking the button, the method request.getParameter() retrieves the passed parameters and displays the value of the parameters on the browser. 

Here is the code of getParameter.jsp

<html>
<body>
<form method="post" action="getParameter.jsp" >
<table>
<tr><td>
Enter your Name:</td><td><input type="text" size="20" name="name"/></td></tr><tr><td>
Enter your Address:</td><td><input type="text" size="20" name="address"/><br></td></tr><tr><td>
<input type="submit" value="Get Parameter"/></td></tr>
<%
if (request.getParameter("name") == null&&request.getParameter("address") == null) {
out.println("Please enter the fields.");
} else {%>
<tr><td><%
out.println("Name: <b>"+request.getParameter("name")+"</b>!"+"<br>");
out.println("Address: <b>"+request.getParameter("address")+"</b>!");
}
%>
</td></tr>
</table>
</form>
</body>
</html>

Output will be displayed as:

After entering the fields, click the button:

On clicking the button, the value of the request parameters will be displayed:

Download Source Code:

                          

» View all related tutorials
Related Tags: c jsp class constructor object io struct method sed const value name return declaration ai like js define example constructors

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.