i have an issue with url lengths in iis7. If you go to:
The page will load fine but if you add one more character to the end it will throw an error. This might seem abit picky to you but it s stopping me from using open id on my login form since it returns a long url. One option i did consider was changing the requestFiltering, therefore in my web.config i have the following:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxQueryString="999999999" maxUrl="999999999" />
</requestFiltering>
</security>
</system.webServer>
But this did not resolve the issue. I d appreciate it if someone could help. Thanks