• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Asp.net中Response.Charset与Response.ContentEncoding区别示例分析

asp 搞代码 4年前 (2022-01-03) 30次浏览 已收录 0个评论

这篇文章主要介绍了Asp.net中Response.Charset与Response.ContentEncoding区别示例分析,对于深入理解Asp.net程序设计有一定的帮助,需要的朋友可以参考下

本文以示例形式分析了Asp.net中Response.Charset与Response.ContentEncoding的区别,分享给大家供大家参考。具体如下:

1.Response.Charset 
ASP.NET 中示例:

 

CodePage 告诉 IIS 按什么编码来读取 QueryString,按什么编码转换数据库中的内容……

2.Response.ContentEncoding

获取或设置输出流的 HTTP 字符集。

Response.Charset

获取或设置输出流的 HTTP 字符集。微软对 ContentEncoding、Charset 的解释是一字不差,其实可以这样理解:ContentEncoding 是标识这个内容是什么编码的,而 Charset 是告诉客户端怎么显示的。

我们可以做一个示例来理解:

示例1.

 Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); Response.Charset = "utf-8"; Response.Write("<a href="http://www.gaodaima.com">gaodaima搞代码网</a>"); 

然后用浏览器打开网页,可以发现是乱码,可是用记事本查看源文件,又发现不是乱码。这就说明了:ContentEncoding 是管字节流到文本的,而 Charset 是管在浏览器中显示的。

示例2.

 Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); 

通过 Fidller,发现 HTTP 头中是:text/html; charset=gb2312。说明没有指定 Charset 时,就用 ContentEncoding 的 Charset 作为 charset。

示例3.

 Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); Response.Charset<strong style="color:transparent">来源gaodai#ma#com搞@代~码网</strong> = "123-8"; 

HTTP 头中是:text/html; charset=123-8。网页显示正常,说明如果 charset 错误,仍然以 ContentEncoding 的 Charset 作为 charset。

示例4.

 Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); Response.Charset = ""; 

HTTP 头中是:text/html;。HTTP 头中没有 charset,网页显示正常,说明 HTTP 头中没有 charset,仍然以 ContentEncoding 的 Charset 作为 charset。

补充:

一.Response.ContentType

获取或设置输出流中 HTTP 的 MIME 类型,比如:text/xml、text/html、application/ms-word。浏览器根据不同的内容启用不同的引擎,比如 IE6 及以上版本中就会自动将 XML 做成树状显示。

 

这是 HTML 中的标签,不能用在 XML、JS 等文件中,它是告诉浏览器网页的 MIME、字符集。当前面的相关内容没有指定时,浏览器通过此来判断。

二.使用流形成一个word文件例子

 protected void btnResponseWord_Click(object sender, EventArgs e) { Response.Clear(); //清空无关信息 Response.Buffer= true; //完成整个响应后再发送 Response.Charset = "GB2312";//设置输出流的字符集-中文 Response.AppendHeader("Content-Disposition","attachment;filename=Report.doc");//追加头信息 Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");//设置输出流的字符集 Response.ContentType = "application/ms-word ";//输出流的MIME类型 Response.Write(TextBox1.Text); Response.End();//停止输出 } 

三.Response.AppendHeader使用

@文件下载,指定默认名

 Response.AddHeader("content-type","application/x-msdownload"); Response.AddHeader("Content-Disposition","attachment;filename=要下载的文件名.rar"); 

@刷新页面

 Response.AddHeader "REFRESH", "60;URL=newpath/newpage.asp" 

这等同于客户机端元素:

 <meta http-equiv="REFRESH" , "60;url=newpath/newpage.asp" <pre></div><p><strong>@页面转向</strong></p><div class="gaodaimacode"><pre class="prettyprint linenums"> Response.Status = "302 Object Moved" Response.Addheader "Location", "newpath/newpage.asp" 

这等同于使用Response.Redirect方法:

 Response.Redirect "newpath/newpage.asp" 

@强制浏览器显示一个用户名/口令对话框

 Response.Status= "401 Unauthorized" Response.Addheader "WWW-Authenticate", "BASIC" 

强制浏览器显示一个用户名/口令对话框,然后使用BASIC验证把它们发送回服务器(将在本书后续部分看到验证方法)。
@如何让网页不缓冲

 Response.Expires = 0 Response.ExpiresAbsolute = Now() - 1 Response.Addheader "pragma","no-cache" Response.Addheader "cache-control","private" Response.CacheControl = "no-cache 

希望本文所述的Asp.net中Response.Charset与Response.ContentEncoding的区别及相关用法对大家Asp.net程序设计有所帮助。

以上就是Asp.net中Response.Charset与Response.ContentEncoding区别示例分析的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Asp.net中Response.Charset与Response.ContentEncoding区别示例分析

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址