<完全反應對象參考
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>
<完全反應對象參考