ASP ContentType 属性

asp contenttype 属性

response 对象参考手册 完整的 response 对象参考手册

contenttype 属性为 response 对象设置 http 内容类型。

语法

response.contenttype[=contenttype]

参数 描述
contenttype 描述内容类型的字符串。

如需完整的内容类型列表,请参阅您的浏览器文档或 http 规范。

实例

如果 asp 页面没有设置 contenttype 属性,那么默认的 content-type 头部是这样的:

content-type:text/html

其他一些常用的 contenttype 值:

<%response.contenttype="text/html"%>
<%response.contenttype="image/gif"%>
<%response.contenttype="image/jpeg"%>
<%response.contenttype="text/plain"%>

此例会在浏览器中打开一个 excel 电子表格(如果用户已经安装了 excel ):

<%response.contenttype="application/vnd.ms-excel"%>















1 2 3 4
5 6 7 8



response 对象参考手册 完整的 response 对象参考手册
相关文章