Configuring asp.net 2.0 webmethod as GET method
2 answers
[ScriptMethod (UseHttpGet = true)]
You can use the above to support the web GET method
http://www.asp.net/ajax/tutorials/understanding-asp-net-ajax-web-services
+1
source to share
The accepted answer does not answer the question as you need the ASP.NET AJAX extensions for the proposed skins to work in version 2.0.
The simplest alternative to support GET and POST for web service 2.0 is to configure them in web.config:
<system.web>
<webServices>
<protocols>
<add name="HttpPost" />
<add name="HttpGet" />
</protocols>
</webServices>
</system.web>
+1
source to share