getResponseHeader와 getAllResponseHeaders가 있습니다.
<%
Dim xmlhttp
xmlhttp = CreatObject("Msxml2.XMLHTTP.4.0")
xmlhttp.open "GET", "http://localhost/sample.xml", False
xmlhttp.send
Response.Write xmlhttp.getResponseHeader("Content-Length")
%>
<%
Dim xmlhttp
xmlhttp = CreatObject("Msxml2.XMLHTTP.4.0")
xmlhttp.open "GET", "http://localhost/sample.xml", False
xmlhttp.send
Response.Write xmlhttp.getAllResponseHeaders()
%>
뉴스그룹 정영탁님
'asp' 카테고리의 다른 글
만료된 페이지 입니다..안나오게 하기 (0) | 2007.05.03 |
---|---|
Logging Utility (0) | 2007.05.03 |
ASP에서 배달 확인/ 읽음 확인 구현 방법 (2) | 2007.05.03 |
HTMLEncode & URLEncode (1) | 2007.05.03 |
성능 및 스타일 향상에 도움이 되는 28가지 ASP 팁 (0) | 2007.05.03 |