Latest web development tutorials

ASP ContentTypeプロパティ

レスポンスオブジェクトリファレンス 完全なレスポンスオブジェクトリファレンス

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>


レスポンスオブジェクトリファレンス 完全なレスポンスオブジェクトリファレンス