Search code examples
asp.neturl-rewritingpagemethods

PageMethod and URl Rewrite


I am having issue with my pagemethod + url rewrite.

When using regular URL: http://myweb.com/mypages/abc.aspx

call to the PageMethod works fine.

But when i use a friendly URL : http://myweb.com/abc it does work. No error though.

Any help would be much appreciated.


Solution

  • You can set the right path to the aspx file from javascript using the PageMethods.set_path method:

    <script type="text/javascript">
       PageMethods.set_path("/mypages/abc.aspx");
    </script>
    

    The answer is taken from the official asp.net forum:

    http://forums.asp.net/p/1599846/4066920.aspx#4066920