2012-10-05 42 views
0

我想使用Pagemethod將該類返回給javascript。是否需要在雙方,客戶端和服務器端創建相同的類的構造?如何從javascript中的pagemethod中獲取類

+0

我認爲我們需要一些更多的信息。什麼是「班」_?你怎麼回來的? JSON?其他一些方法? –

回答

0

我想通了。我使用下面的代碼上vb.net

<WebMethod()> _ 
     Public Shared Function checkTime(ByVal ID As Integer) As Integer() 

     Do something and return the value 
     End Function 

於JavaScript調用的方法:

PageMethods.checkTime(ID, OncheckTimeComplete, OncheckTimeError, senderInfo); 
相關問題