Neueste Web-Entwicklung Tutorials
 

ASP ContentType Property


<Complete Response Object Reference

Die Contenttype-Eigenschaft setzt den HTTP-Content-Typ für das Antwortobjekt.

Syntax

response.ContentType[=contenttype]

Parameter Beschreibung
contenttype Eine Zeichenfolge beschreibt den Inhaltstyp.

Für eine vollständige Liste der Inhaltstypen finden Sie Ihre Browser-Dokumentation oder die HTTP-Spezifikation.

Beispiele

Wenn eine ASP-Seite keine Eigenschaft Contenttype gesetzt hat, würde der Standard-Content-Type-Header sein:

content-type:text/html

Einige andere gemeinsame Content Werte:

<%response.ContentType="text/HTML"%>
<%response.ContentType="image/GIF"%>
<%response.ContentType="image/JPEG"%>
<%response.ContentType="text/plain"%>

In diesem Beispiel wird eine Excel-Tabelle in einem Browser öffnen (wenn der Benutzer Excel installiert ist):

<%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>

<Complete Response Object Reference