Monday 25 February 2013

Request format is unrecognized for URL unexpectedly ending in


Add the following to web.config since GET and POST are disabled by default in ASP.NET 2.0 and greater:

<configuration>
    <system.web>
    <webServices>
        <protocols>
            <add name="HttpGet"/>
            <add name="HttpPost"/>
        </protocols>
    </webServices>
    </system.web>
</configuration>

Build the project and run.

0 comments:

Post a Comment