2

我一直在尝试以这种方式在 javascript 中调用 ac# 函数:

函数 x() {
    PageMethods.F1(onSucess, onError);

    函数成功(结果){
       警报(“成功”);
    }
    函数错误(结果){
       alert('出了点问题');
    }
}
[WebMethod]
public static boolean F1()
{
    return true;
}

 

<asp:Button ID="Button1" runat="server"  OnClientClick="x(); return false"    Text="Button"  />

但我没有得到任何结果,我的意思是没有弹出警报消息。究竟是什么问题?

4

1 回答 1

1

在 上设置EnablePageMethodsScriptManager

<asp:ScriptManager EnablePageMethods="True" />
于 2013-08-03T21:07:57.447 回答