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"%>
 <html>
 <body>
 <table>
 <tr>
 <td>1</td>
 <td>2</td>
 <td>3</td>
 <td>4</td>
 </tr>
 <tr>
 <td>5</td>
 <td>6</td>
 <td>7</td>
 <td>8</td>
 </tr>
 </table>
 </body>
 </html>

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

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号