(PWS4 IIS4 IIS5)
ContentTyep — 応答の HTTP コンテンツ タイプを指定します。
Response.ContentTyep[= ContentType]
ContentType:コンテンツ タイプを説明する文字列です。通常、この文字列は type/subtype という形式で指定されます。type はコンテンツの一般的なコンテンツ カテゴリ、subtype は具体的なコンテンツ タイプです。サポートされているコンテンツタイプの一覧については、Web ブラウザのマニュアル、または現在の HTTP 仕様書を参照してください。
説明
ContentType プロパティは、応答の HTTP コンテンツ タイプを指定します。ContentType を指定しない場合は、既定値の text/HTML になります。
例1.ContentTyepの例
次の例は、コンテンツ タイプを、チャンネル定義形式 (CDF) に設定します。
1 | <% Response.ContentType = "application/x-cdf" %> |
次の例は、ContentType プロパティにその他の一般的な値を設定します。
1 2 3 4 5 | <% Response.ContentType = "text/HTML" %> <% Response.ContentType = "image/GIF" %> <% Response.ContentType = "image/JPEG" %> <% Response.ContentType = "text/plain" %> <% Response.ContentType = "image/JPEG" %> |