I have a form (testform.html)as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
</head>
<body>
<form id="form1" method="post" action="datareturn.aspx" >
<input type="text" id="FoxyData" name="FoxyData" />
<input id="Submit" type="submit" value="submit" name="submit" />
</form>
</body>
</html>
When I enter data into the form field and click submit then the datareturn.aspx page opens but the Request.Form collection is empty. I I change "post" to "get" and click submit the Request.Querystring collection correctly contains the data.
I have used request.form() many times and although I'm sure it's something silly, i just can't work out why the POST is not working.
Any Ideas anyone?
Thanks,
Terry