在一般处理程序(ashx)中弹出js提示语
Posted 何波
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在一般处理程序(ashx)中弹出js提示语相关的知识,希望对你有一定的参考价值。
在提交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("你的提示语!");
以上是关于在一般处理程序(ashx)中弹出js提示语的主要内容,如果未能解决你的问题,请参考以下文章