方式一:
Response.write("Y")
Response.end()
方式一有时候会抛出异常 我曾经遇到这样的情况 就是在try catch 里面执行到Response.end() 的时候抛出异常
所以有时候可用采用第2种方式将数据发送到客户端,一般我们采用的是ajax
在客户端在回调函数里面我们 alert(data) 就可用看到一个“Y” 的警告框
方式二:
HttpContext.Current.Response.Write("Y")
HttpContext.Current.Response.Flush() HttpContext.Current.ApplicationInstance.CompleteRequest() HttpContext.Current.Response.Close()
原文链接:https://www.f2er.com/vb/259291.html