在一般处理程序ashx中弹出js提示语

在提交form表单时,比如前台$("form").submit()同步提交的时候,这个是没有回掉函数的,那么我们只能在后台提示,在前台显示,自己作为一个参考吧

rush:js;"> public class Script { public static void Alert(string message) { ResponseScript("alert('" + message + "');window.location = '弹出提示语后,点击确认跳到你想跳的页面';"); } public static void ResponseScript(string script) { HttpContext.Current.Response.Write("\n"); } }

还有就是将一般处理程序认的 //context.Response.ContentType = "text/plain";改为 context.Response.ContentType = "text/html";  

我们调用的时候直接:

rush:js;"> Script.Alert("你的提示语!");

PS

:Js中$.ajax调用一般处理程序(.ashx)

rush:js;"> $.ajax({ type: "post",url: "/tools/ActApply.ashx",data: "txthdmoney=" + $.trim($("#hdmoneyx")[0].value)+"&sxf=2",success: function (result) { } });

.ashx后台接收数据

rush:js;"> protected decimal hdmoney; protected decimal hdsxf; /// /// 请求处理 /// /// aram name="context"> 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提示语。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持

相关文章

前言 做过web项目开发的人对layer弹层组件肯定不陌生,作为l...
前言 前端表单校验是过滤无效数据、假数据、有毒数据的第一步...
前言 图片上传是web项目常见的需求,我基于之前的博客的代码...
前言 导出Excel文件这个功能,通常都是在后端实现返回前端一...
前言 众所周知,js是单线程的,从上往下,从左往右依次执行,...
前言 项目开发中,我们可能会碰到这样的需求:select标签,禁...