http,,Content-Type,内容类型,一般是指网页中存在的Content......这这段话表示什么意思啊?有实例吗?

2025-04-02 07:46:42
推荐回答(1个)
回答1:

Content-Type,内容类型,一般是指网页中存在的Content-Type,用于定义网络文件的类型和网页的编码,决定浏览器将以什么形式、什么编码读取这个文件,这就是经常看到一些Asp网页点击的结果却是下载到的一个文件或一张图片的原因。
http://tool.oschina.net/commons

就是指示浏览器怎以处理服务器下发的内容。
示例
下面的示例将内容类型设置为 Channel Definition Format(CDF)。
<% Response.ContentType = "application/x-cdf" %>
下面的示例将 ContentType 属性设置为其他的常见值。
<% Response.ContentType = "text/HTML" %>
<% Response.ContentType = "image/GIF" %>
<% Response.ContentType = "image/JPEG" %>