Latest web development tutorials

immobili ASP ContentType

Risposta Object Reference Risposta completa Object Reference

proprietà ContentType è impostata su http tipo di contenuto per l'oggetto risposta.

grammatica

response.ContentType[=contenttype]

参数 描述
contenttype 描述内容类型的字符串。

如需完整的内容类型列表,请参阅您的浏览器文档或 HTTP 规范。

Esempi

Se la pagina ASP non è impostato proprietà ContentType, quindi il tipo di contenuto di intestazione di default in questo modo:

content-type:text/html

Alcuni altri valori ContentType comuni:

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

Questa riunione ordinaria aprire un foglio di lavoro Excel (se avete installato Excel) nel browser:

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


Risposta Object Reference Risposta completa Object Reference