When should I set HttpResponse.SuppressContent to true(何时应将HttpResponse.SuppressContent设置为True)
问题描述
我编写了用于验证url的HTTP模块,如果URL包含特殊符号,我将重定向到根目录。
我找到了不同的示例,有人建议将HttpResponse.SuppressContent属性设置为True。但我不确定在这种情况下会发生什么。MSDN表示它正在指示是否向客户端发送HTTP内容,这是否意味着重定向不会由客户端发起,而是由服务器发起?
推荐答案
默认情况下,ASP.Net缓冲处理程序的输出。Response.SupressContent阻止将该内容发送到客户端,但仍将发送标头。
示例1-带缓冲和SupressContent=FALSE的输出
<%@ Page Language="C#" AutoEventWireup="true" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
Response.Write("No Supression");
}
</script>
Dynamic Content
<%= DateTime.Now %>
原始http响应:
HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html; charset=utf-8
Vary: Accept-Encoding
Date: Sun, 03 May 2015 23:29:17 GMT
Content-Length: 44
No Supression
Dynamic Content
5/3/2015 5:29:17 PM
示例2-带缓冲和SupressContent=True的输出
<%@ Page Language="C#" AutoEventWireup="true" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
Response.Write("Suppress it all!");
Response.SuppressContent = true;
}
</script>
Dynamic Content
<%= DateTime.Now %>
原始http响应:
HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html
Date: Sun, 03 May 2015 23:34:13 GMT
Content-Length: 0
请注意,此输出没有内容。
您的问题具体是关于重定向会发生什么。
示例3-SupressContent=True时重定向
<%@ Page Language="C#" AutoEventWireup="true" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect("~/SomewhereElse.aspx");
// Exception was thrown by previous statement. These two lines do not run.
Response.Write("Redirect Supress Content");
Response.SuppressContent = true;
}
</script>
Dynamic Content
<%= DateTime.Now %>
原始http响应:
HTTP/1.1 302 Found
Cache-Control: private
Content-Type: text/html; charset=utf-8
Location: /SomewhereElse.aspx
Date: Sun, 03 May 2015 23:35:40 GMT
Content-Length: 136
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/SomewhereElse.aspx">here</a>.</h2>
</body></html>
注意仍然有一具身体。这是因为我们没有允许请求完全处理。默认情况下,Response.ReDirect将引发异常,并且Response.SupressContent属性未设置为True。如果我们将False传递给第二个参数,则它类似于上面的示例。
示例4-当SupressContent=True时重定向,并且Response.ReDirect不引发异常。
<%@ Page Language="C#" AutoEventWireup="true" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect("~/SomewhereElse.aspx", false);
Response.Write("Redirect Supress Content");
Response.SuppressContent = true;
}
</script>
Dynamic Content
<%= DateTime.Now %>
原始http响应:
HTTP/1.1 302 Found
Cache-Control: private
Content-Type: text/html
Location: /SomewhereElse.aspx
Date: Sun, 03 May 2015 23:37:45 GMT
Content-Length: 0
这篇关于何时应将HttpResponse.SuppressContent设置为True的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:何时应将HttpResponse.SuppressContent设置为True
基础教程推荐
- 如何激活MC67中的红灯 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01