Jsp Tutorial Home

Jsp Home

JSP Resources

Community

Site

 
Processing a Form


Here we show how to process the html form your just created.

Copy the code below and place in a file named: myformconfirm.jsp

Go to myform.jsp

Fill in some details and submit the form

You should see the results of your submission



<html>

<head>

<!-- Example4 -->

<title>VisualBuilder.com</title>

</head>

<body>

<font size=3>

Your info has been received:

<br><br>

<%

String sName = request.getParameter("website");

out.print(sName);

%>

</font>

</body>

</html>




                    

Copyright © 2013 VisualBuilder. All rights reserved