Latest web development tutorials

Properti ASP ContentType

Response Referensi Obyek Lengkap Response Referensi Obyek

Properti ContentType diatur HTTP jenis konten untuk objek respon.

tatabahasa

response.ContentType[=contenttype]

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

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

contoh

Jika halaman ASP tidak diatur properti ContentType, maka tipe isi default header seperti ini:

content-type:text/html

Beberapa lainnya umum ContentType nilai-nilai:

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

Pertemuan rutin ini membuka spreadsheet Excel (jika Anda telah menginstal Excel) di browser Anda:

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


Response Referensi Obyek Lengkap Response Referensi Obyek