View Single Post
Old Jul 13th, 2004, 2:00 AM   #1
TerraNerd
Programmer
 
TerraNerd's Avatar
 
Join Date: Jul 2004
Location: Vermont, USA
Posts: 65
Rep Power: 5 TerraNerd is on a distinguished road
Send a message via AIM to TerraNerd
Whats wrong with my coding?

Unknown.html:
<html> 
<head><title>Asking for information</title></head> 
<body> 
<form method="post" action="unknown.asp"> 
Your name: <input type="text" name="YourName" size="20"><BR> 
Your email: <input type="text" name="YourEmail" size="15"><BR> 
<input type="Submit" value="Submit"> 
</form> 
</body> 
</html>

Unknown.asp:
<html> 
<head><title>Responding to a form</title></head> 
<body> 
Your name is <% =Request.Form("YourName") %> <BR> 
Your email is <% =Request.Form("YourEmail") %> 
</body> 
</html>

when i press the submit, it shows the Your name is, then Your email is, but it doesnt show what i requested it to, it doesnt show anything after that
__________________
[See a gallery of my Graphic art Here.][Visit my website Here]
TerraNerd is offline   Reply With Quote