I have an HTML web page that should submit back to itself, but constantly fails if method="POST". It works with GET, but we really want POST. I have ripped out all of the code until there is nothing left but an input and a submit, but it always gets the 405 error. This temp web page is as stripped down as I can make it.
I am running this test off my PC running IIS 7.
<form id="form1" action="PhoneTest3.html" method="POST">
<label for="contactPhoneExt">Contact Phone: </label>
<input id="contactPhoneExt" name="contactPhoneExt" />
<br/>
<input type="submit" value="Submit" />
</form>
What am I missing?