从客户端调用后台静态方法 1.Ajax Library方式
C#代码:
[WebMethod]
public static DateTime GetCurrentTime()
{
return DateTime.Now;
}
JS代码:
function GetCurrentTime1() {
PageMethods.GetCurrentTime( CheckIsSuccess);
}
function CheckIsSuccess(result) {
alert(result);
}
EnablePageMethods="true">
C#方法必须加 "[WebMethod]"
前台页面必须使用引用 服务器控件
调用方法: PageMethods.后台方法名(参数[,参数....], 成功后调用的方法名);
http://www.cnblogs.com/henw/archive/2012/05/03/2480415.html
2. jQuery方式
http://blog.chinaunix.net/uid-28299820-id-3403095.html
阅读(494) | 评论(0) | 转发(0) |