Response.End方法
Posted tpf386
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Response.End方法相关的知识,希望对你有一定的参考价值。
文章:在try...catch语句中执行Response.End()后如何停止执行catch语句中的内容
调用Response.End()方法能保证,只输出End方法之前的内容。
调用Context.ApplicationInstance.CompleteRequest();方法,会输出方法之后的Response.Write()内容,并且页面的html内容一会被输出。
除非你删除掉页面的html,只保留:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ResponseEnd.aspx.cs" Inherits="TestWebBackThread.ResponseEnd" %>
Context.ApplicationInstance.CompleteRequest()
使 ASP.NET 跳过 HTTP 执行管线链中的所有事件和筛选并直接执行 EndRequest 事件。
以上是关于Response.End方法的主要内容,如果未能解决你的问题,请参考以下文章
node.js中的http.response.end方法使用说明