Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
727 views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...