2012-12-05 49 views
-1

我有一個測試web應用程序,它通過Javascript函數調用一個PageMethod。PageMethods.set_path在urlrewriting中不起作用

PageMethods.myMethod(params, onSuccess, onFailed); 

當我使用urlRewriting它不工作了。所以,我搜索網頁,我發現這添加到js文件。

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

但是這不起作用。它提供了一個404未找到的錯誤,當我用F12查看web開發人員工具。

有沒有什麼建議可以給?任何幫助將不勝感激

以下是完成。

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

回答

-2

無論如何,我找到了另一種方式叫WebMethod。我使用Webservice。我不需要使用PageMethods。

+0

這不是解決方案。 –

相關問題