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
