PageMethod and URl Rewrite

落爺英雄遲暮 提交于 2019-11-28 11:44:26
Roger Saladrigas

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

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>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!