0
我打電話從客戶端這樣一個特定的WebMethod:調用服務器端的方法從客戶端在asp.net
function openSmallPopup(int) {
PageMethods.GetTenantInfo(int, OnGetMessageSuccess, OnGetMessageFailure);
return 'I need here to return the result';
}
function OnGetMessageSuccess(result, userContext, methodName) {
alert(result);
}
好了,結果成功地顯示在OnGetMessageSuccess
。唯一的問題是,我真的需要在最初的openSmallPopup
方法中返回結果...你們知道有什麼方法可以做到這一點嗎?
只需從OnGetMessageSuccess調用openSmallPopup(result)即可。 – Anoop