PageMethods.set_path在urlrewriting中不起作用

时间:2012-12-05 16:52:30

标签: asp.net url-rewriting webmethod pagemethods

我有一个测试Web应用程序,通过Javascript函数调用单个PageMethod。

PageMethods.myMethod(params, onSuccess, onFailed);

当我使用urlRewriting时,它不再起作用了。所以,我搜索了网页,我发现这是添加到js文件。

Pagemethods.set_path("/the_real_path.aspx");

然而,这不起作用。当我使用F12查看chrome中的Web开发人员工具时,它会发现404未找到错误。

你能给出什么建议吗?任何帮助将不胜感激

以下完成。

-ScriptManager EnablePageMethods = True
-Method is public and shared(static)
-Method is decorated with <WebMethod(True)>

1 个答案:

答案 0 :(得分:-2)

无论如何,我找到了另一种方式来调用WebMethod。我用过Webservice。我不需要使用PageMethods。