Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Post Pages don't display but Get Method pages display

Status
Not open for further replies.

micknh

Programmer
Apr 19, 2005
13
US
Hi,

We are trying to migrate data from a test server to a production Win2k server sp4, IIS5.

When I use a post method on a form (either html or php page type), I receive an error stating the page can't be found. This will happen even when the page is being submitted to itself.

If I use a get method on the same form the page displays correctly.

Since this happens both on php and html pages I assume it is an incorrect IIS setting. BTW, the very simple code for the test page I am using follows.
Code:
<html>
<head>
<title>Test Form</title>
</head>
<body>
<form action="" method="post">
<table>
<tr><td>Name</td><td><input type="text" name="name0"/></td></tr>
<tr><td>Age</td><td><input type="text" name="age0"/></td></tr>
</table>
<input type="submit" name="SubmitMe" value="Submitted" />
</form>
</body>
</html>
Any suggestions you can provide would be greatly appreciated.

Michael
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top