최신 웹 개발 튜토리얼
 

ASP ContentType Property


<전체 응답 객체 참조

적인 contentType 속성은 응답 객체에 대한 HTTP 콘텐츠 형식을 설정합니다.

통사론

response.ContentType[=contenttype]

매개 변수 기술
contenttype 콘텐츠 유형을 기술하는 스트링.

콘텐츠 형식의 전체 목록은 브라우저 문서 또는 HTTP 사양을 참조하십시오.

ASP 페이지가 더의 ContentType 속성 집합이없는 경우, 기본 콘텐츠 형식 헤더는 다음과 같습니다

content-type:text/html

다른 어떤 공통의 ContentType 값 :

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

이 예는 브라우저에서 Excel 스프레드 시트를 (사용자가 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>

<전체 응답 객체 참조