<完全反应对象参考
ContentType属性将针对响应对象中的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>
<完全反应对象参考