asp.net – Response.End()和Response.Flush()之间的差异

我有这样的代码
context.HttpContext.Response.Clear();
            context.HttpContext.Response.Write(htmlString);              
            context.HttpContext.Response.End();

但是,当页面加载时,我已经没有关闭html标签.当我用Response.Flush()替换Response.End()它工作正常.
Response.End()和Response.Flush()之间有什么区别?

解决方法

Response.Flush

Forces all currently buffered output to be sent to the client. The
Flush method can be called multiple times during request processing.

到Response.End

Sends all currently buffered output to the client,stops execution of
the page,and raises the EndRequest event.

如果在Response.Write之后没有对页面进行任何处理,并且希望停止处理页面,则应该尝试使用此代码.

context.HttpContext.Response.Clear();
    context.HttpContext.Response.Write(htmlString);              
    context.HttpContext.Response.Flush(); // send all buffered output to client 
    context.HttpContext.Response.End(); // response.end would work fine now.

相关文章

项目要求通过网站上传大文件,比如视频文件,通过摸索实现了文件分片来上传,然后后台进行合并。 使用了...
安装新版本的Nginx(vim /etc/yum.repos.d/nginx.repo) [nginx-stable] name=nginx stable repo baseu...
什么是 SignalR ASP.NET Core ASP.NET Core SignalR 是一种开放源代码库,可简化将实时 web 功...
在Windows下使用Docker,我们选择Docker Desktop这个软件,非常方便。 ## Docker Desktop介绍及安装 Do...
项目开始设计的是运行在windows下,所以一开始采用的是windows服务模式来获取多媒体文件信息,后来要求...
银河麒麟高级服务器操作系统V10是针对企业级关键业务,适应虚拟化、云计算、大数据、工业互联网时代对主...