您好,登錄后才能下訂單哦!
在提交form表單時,比如前臺是$("form").submit()
同步提交的時候,這個是沒有回掉函數的,那么我們只能在后臺提示,在前臺顯示,自己作為一個參考吧
public class Script { public static void Alert(string message) { ResponseScript("alert('" + message + "');window.location = '彈出提示語后,點擊確認跳到你想跳的頁面';"); } public static void ResponseScript(string script) { HttpContext.Current.Response.Write("<script type=\"text/javascript\">\n//<![CDATA[\n"); HttpContext.Current.Response.Write(script); HttpContext.Current.Response.Write("\n//]]>\n</script>\n"); } }
還有就是將一般處理程序默認的 //context.Response.ContentType = "text/plain"
;改為
context.Response.ContentType = "text/html"
;
我們調用的時候直接:
Script.Alert("你的提示語!");
PS:Js中$.ajax調用一般處理程序(.ashx)
$.ajax({ type: "post", url: "/tools/ActApply.ashx", data: "txthdmoney=" + $.trim($("#hdmoneyx")[0].value)+"&sxf=2", success: function (result) { } });
.ashx后臺接收數據
protected decimal hdmoney; protected decimal hdsxf; /// <summary> /// 請求處理 /// </summary> /// <param name="context"></param> public void ProcessRequest(HttpContext context) { Withdrawal withdra = new Withdrawal(); context.Response.ContentType = "text/plain"; hdmoney = Convert.ToDecimal(context.Request.Params["txthdmoney"].ToString()); hdsxf = Convert.ToDecimal(context.Request.Params["sxf"].ToString()); SaveAct(); } public bool IsReusable { get { return false; } }
總結
以上所述是小編給大家介紹的在一般處理程序(ashx)中彈出js提示語,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。