When I run my ASPNet MVC 2 Preview 1 website under VS dev server, it works just fine when I do a form post with Form Method "Get" - the form has a textbox with text that has angle brackets (for ex: "i < 10;")
However under IIS, when the same form is posted (using Method "Get"), I get a 404 page not found.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /Rejected-By-UrlScan
Searched all over the web, nothing that helped solve the issue.
Yes, I do have
- ValidateRequest="false" set on Views->Web.config, Main Web.Config
- ValidateInput(false) attribute set on the Controller class as well as all the Action methods
None of these 2 options are helping solve the problem.
Any help appreciated