Jsp Tutorial Home

Jsp Home

JSP Resources

Community

Site

 Creating a Form

Here we show how to create and process an html form.

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

Go to myform.jsp in your browser

You will see the form you just created.

It won't do anything yet.



<html>

<head>

<!-- Example4 -->

<title>VisualBuilder.com</title>

</head>

<body>

<form action="myformconfirm.jsp" method="post">

Enter in a website name:<br>

<input type="text" name="website"><br>

<input type="submit" name="submit">

</form>

</body>

</html>




                    

Copyright © 2013 VisualBuilder. All rights reserved