Retrieving the data
posted to a JSP file from HTML file

Now I will show you how to retrieve the data posted from a HTML file in
a JSP page. Consider an html page that prompts the user to enter his/her
name, let's call it getname.htm. Here is the code of the html
file:
|
<html>
<head>
<title>Enter your name</title>
</head>
<body>
<p> </p>
<form method="POST"
action="showname.jsp">
<p><font color="#800000"
size="5">Enter
your name:</font><input
type
="text"
name="username"
size="20"></p>
<p><input type="submit"
value="Submit"
name="B1"></p>
</form>
</body>
</html>
|
The target of form is "showname.jsp", which displays the name
entered by the user. To retrieve the value entered by the user we uses
the
request.getParameter("username");
code.
Here is the code of "showname.jsp" file:
|
<%@page contentType="text/html"
%>
<!--
http://www.roseindia.net/jsp
-->
<html>
<body>
<p><font size="6">Welcome :
<%=request.getParam
eter("username")%></font></p>
</body>
</html>
|
Execute the example.
Download the code

|
Current Comments
9 comments so far (post your own) View All Comments Latest 10 Comments:Pl Sir Could you tell me How to Transfer files.. using JSP??
Posted by Tushar on Monday, 02.25.08 @ 19:43pm | #49972
Thanks For Your Tut.
Its, Really Help Me To Build My JSP Project
Posted by Abhishek on Sunday, 02.17.08 @ 07:31am | #48710
u r tutorials r good!..keep up t good job!
Posted by mahesh on Tuesday, 01.29.08 @ 21:54pm | #46515
I want to get my attached file. Wat is the syntax?
Posted by senthil on Sunday, 10.7.07 @ 11:55am | #32306
can u give me the detail to retrieve infn from an jsp output html file
Posted by gimsy on Saturday, 09.29.07 @ 18:46pm | #30482
we cant execute the above mentioned code
Posted by sy on Wednesday, 07.18.07 @ 17:52pm | #21504
please give me the answer
Posted by harika on Monday, 07.2.07 @ 10:33am | #20566
Its very easy to learn ,Thank u for giving goo oppertunities...
Posted by sireesha on Friday, 06.29.07 @ 11:34am | #20367
its very nice
Posted by sushil lamoria on Thursday, 04.12.07 @ 18:07pm | #13977