Ajax调用例子
发布时间:2020-12-16 01:33:00 所属栏目:百科 来源:网络整理
导读:Ajax.cs public class Ajax { public Ajax() { } [AjaxPro.AjaxMethod] public static string GetText1(string a){ return "aa"; } [AjaxPro.AjaxMethod] public static bool CheckUserCoin() { string userCode = SessionHelper.Get(SessionHelper.USERCODE
Ajax.cs public class Ajax { public Ajax() { } [AjaxPro.AjaxMethod] public static string GetText1(string a){ return "aa"; } [AjaxPro.AjaxMethod] public static bool CheckUserCoin() { string userCode = SessionHelper.Get(SessionHelper.USERCODE); int c = SqlHelper.GetUserCoin(userCode); if (PublicFunction.GetIsAdmin(userCode)) return true; if (!SqlHelper.IsPayUser(SessionHelper.Get(SessionHelper.USERCODE)) && c < 10) { return false; } return true; } [AjaxPro.AjaxMethod] public static void PayCoin() { string userCode = SessionHelper.Get(SessionHelper.USERCODE); if (!PublicFunction.GetIsAdmin(userCode)) { SqlHelper.PayCoin(userCode); } } } Show.aspx function vphone() { var check = Cleo.Ajax.CheckUserCoin().value; if (!check) { window.alert('用户积分不够'); window.location.href = '../Default.aspx'; return; } var v = document.getElementById("<%=i_contact.ClientID %>").value; $("#phone").html(v); Cleo.Ajax.PayCoin(); } <a href="javascript:;" id="vphone" onclick="vphone()"></a> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |