js调用后台服务器端事件

前台js的调用服务器端的代码 :

<mce:script type="text/javascript"><!-- //调用 alert( getWebMethod("2")); //取从服务器返回的值 function getWebMethod(parameter) { var value = '<%=GetWebMethod("' + parameter+ '")%>'; //value为从服务器端返回的值 return value; } // --></mce:script>

服务器端的后台代码为:

[System.Web.Services.WebMethod] public static string GetWebMethod(string parameter) { string value = string.Empty; value = parameter+ "server"; return value; } 

你可能感兴趣的:(js调用后台服务器端事件)