Najnowsze tutoriale tworzenie stron internetowych
 

ASP ContentType Property


<Object Reference pełna odpowiedź

Nieruchomość ContentType ustawia typ zawartości HTTP dla obiektu odpowiedzi.

Składnia

response.ContentType[=contenttype]

Parametr Opis
contenttype Ciąg opisujący typ zawartości.

Aby uzyskać pełną listę typów zawartości, można znaleźć w dokumentacji przeglądarki lub specyfikacji HTTP.

Przykłady

Jeżeli strona ASP ma ContentType zestaw właściwości, nagłówek Content-Type domyślny będzie:

content-type:text/html

Niektóre inne wspólne contenttype wartości:

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

Ten przykład otworzy arkusza kalkulacyjnego Excel w przeglądarce (jeśli użytkownik ma zainstalowany program 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>

<Object Reference pełna odpowiedź