Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 786
Murali Bala Avatar asked Oct 26 '25 09:10

Murali Bala


2 Answers

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

like image 133
Roger Saladrigas Avatar answered Oct 29 '25 00:10

Roger Saladrigas


There is a slight typo in Roger's answer that set me on a wrong path and took a long time to figure out so here is the correct code sample for everyone else:

Set the path for the pagemethods in the page before calling page methods:

<script>
   PageMethods.set_path("/foo/bar.aspx");
</script>
like image 30
Mikko Lassila Avatar answered Oct 29 '25 01:10

Mikko Lassila



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!