ASP Simple form information
Simple form information
<html>
<body>
<form action="?" method="post">
First name:
<input type="text" name="fname" value="John">
<br>
Last name:
<input type="text" name="sname" value="Smith">
<br>
<input type="submit" value="Submit">
</form>
<%
Response.Write(Request.Form)
%>
</body>
</html>