I have a standard html form in my master page. The form uses the GET method. When I submit the form, nothing is appended to the URL. I am assuming that this feature is disabled somewhere somehow. I have read a few articles that describe how to enable the features in the web.xml and so I've gone ahead and done it and my web.xml looks like
-
<?xml version="1.0" encoding="UTF-8"?>
-
<configuration>
-
<system.net>
-
</system.net>
-
<system.web>
-
<webServices>
-
<protocols>
-
<add name="HttpGet" />
-
<add name="HttpPost" />
-
<add name="HttpPostLocalhost" />
-
</protocols>
-
</webServices>
-
<compilation debug="true" />
-
<customErrors mode="Off" />
-
<sessionState cookieless="UseUri" timeout="60" />
-
<pages enableViewState="true" />
-
<roleManager enabled="false" />
-
</system.web>
-
<system.webServer>
-
<defaultDocument>
-
<files>
-
<add value="index.aspx" />
-
</files>
-
</defaultDocument>
-
</system.webServer>
-
</configuration>
-
What should I be doing to try and enable the GET functionality in asp.net?