Source Code of formdemo.asp
<!DOCTYPE html PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>
<html>
<head>
<title>Form Handler</title>
<style type="text/css">
body {color:#330000;
background-color:#FFFFFF;
font-family:Arial;
}
</style>
</head>
<body><h1>Your information has been received.</h1>
<br />
<%
' Loop through the fields writing out the field name and value.
For Each Field In Request.Form
Next
%>
<br />
<form>
<input type="button" value = "Back" onclick="javascript:history.go(-1)">
</form>
</body>
</html>
|
Look a little different than your run-of-the-mill
web page?
|