tutorial pengembangan web terbaru
 

ASP ContentType Property


<Complete Reference Response Obyek

Properti ContentType menetapkan HTTP jenis konten untuk objek respon.

Sintaksis

response.ContentType[=contenttype]

Parameter Deskripsi
contenttype Sebuah string yang menjelaskan jenis konten.

Untuk daftar lengkap jenis konten, lihat dokumentasi browser Anda atau spesifikasi HTTP.

contoh

Jika halaman ASP tidak memiliki ContentType set properti, default konten-jenis header yang akan menjadi:

content-type:text/html

Beberapa umum lainnya ContentType nilai-nilai:

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

Contoh ini akan membuka spreadsheet Excel di browser (jika pengguna telah Excel diinstal):

<%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 Reference Response Obyek