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"%> <%response.ContentType="image/JPEG"%>
此例会在浏览器中打开一个 Excel 电子表格(如果用户已经安装了 Excel ):
<%response.ContentType="application/vnd.ms-excel"%>
1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |
ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日ASP编码教程:asp缓存的分类
[ASP]2015年4月15日ASP编码教程:何谓ASP缓存/为什么要缓存
[ASP]2015年4月15日ASP编码教程:asp实现的sha1加密解密代码
[ASP]2015年4月15日ASP编码教程:asp执行带参数的sql语句实例
[ASP]2015年4月14日