Ajax(配合ScriptManager控件使用)

前端之家收集整理的这篇文章主要介绍了Ajax(配合ScriptManager控件使用)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
配合ScriptManager控件,可以快速的写出ajax无刷新效果注意EnablePageMethods属性要设为true <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true"> </asp:ScriptManager> //第一个为后台方法参数(可以不写传参数) //第二个为(回调方法) function GetDate() { PageMethods.Date($("#text1").val(),sucess); } //回调方法 function sucess(result) { $("#text1").val(""); $("#text1").val(result); } //后台方法 [WebMethod] public static string Date(string str) { return DateTime.Now.ToString() + str; } 原文链接:https://www.f2er.com/ajax/165799.html

猜你在找的Ajax相关文章