本文介绍了使用PageMethods在javascript中调用c#函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我一直试图用Javascript调用ac#函数:I've been trying to call a c# function in Javascript this way:function x() { PageMethods.F1(onSucess, onError); function onSucess(result) { alert('Success'); } function onError(result) { alert('Something wrong.'); } }[WebMethod]public static boolean F1(){ return true;} <asp:Button ID="Button1" runat="server" OnClientClick="x(); return false" Text="Button" />但我没有得到任何结果,我的意思是没有弹出警报信息。 到底出了什么问题?But I don't get any result, I mean neither of the alert messages pops up.What exactly is wrong?推荐答案<asp:ScriptManager ID="ScriptManager" runat="server" EnablePageMethods="true" /> 这篇关于使用PageMethods在javascript中调用c#函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!