ASP ContentType 属性
❮ Response 对象完整参考
ContentType 属性设置响应对象的 HTTP 内容类型。
语法
response.ContentType[=contenttype]
参数 | 描述 |
---|---|
contenttype | 描述内容类型的字符串。 有关内容类型的完整列表,请参阅浏览器文档或 HTTP 规范。 |
示例
如果 ASP 页面未设置 ContentType 属性,则默认内容类型标头将为
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 对象完整参考