How do you access a form using jsp custom tag
I've made a jsp page that shows a text input field and allows the user to input the name. When the user clicks the 慏one?button on the first page ,it will be posted to the second page jsp. I want to use custom tag to show 慤sername?
Now using custom tag how do you access a form or any site links out there to look at?
code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>User form</title>
</head>
<body>
<h1>User Info Entry Form</h1>
<form action="hello.jsp" method="post">
<table>
<tr>
<td>Name:</td>
<td><input type="text" name="userName" >
</td>
</tr>
<tr>
<td colspan=2><input type="submit" name = "done"></td>
</tr>
</table>
</form>
</body>
</html>
Message was edited by:
suse69

