일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- FileSystemObject
- VARIABLE
- jdbc driver
- xmldom
- 이미지가로길이
- 자바기초
- XML
- injection
- sql랭킹
- MSSQL보안
- javascript 한글입력체크
- asp함수
- array
- inner join
- tempDB
- 인젝션
- join
- ERD
- sql업데이트
- sql순위
- wap
- 정규식
- VarType
- 이미지세로길이
- JavaScript
- instr
- SPLIT
- 한글입력체크
- WML
- update
- Today
- Total
3초기억력
ServerXMLHTTP 사용법 + getOption Method 본문
제목 : ServerXMLHTTP 사용법
소스 :
<%
' deliberate typo:
url = "http://www.espn.co/main.html"
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
on error resume next
xmlhttp.open "HEAD", url, false
xmlhttp.send ""
status = xmlhttp.status
if err.number <> 0 or status <> 200 then
if status = 404 then
Response.Write "Page does not exist (404)."
elseif status >= 401 and status < 402 then
Response.Write "Access denied (401)."
elseif status >= 500 and status <= 600 then
Response.Write "500 Internal Server Error on remote site."
else
Response.write "Server is down or does not exist."
end if
else
sResult = xmlhttp.responseText
sFinalURL = xmlhttp.getOption(-1) '-1 은 최종 페이지의 URL 값
If url <> sFinalURL Then
Response.write "ERROR MSG : url is not The final page URL <br>"
End If
Response.Write "The final page URL (after any redirects) is " & sFinalURL & "<br/>"
Response.Write "Server is up and URL is available."
end if
set xmlhttp = nothing
%>
출처 :
내용 :
ServerXMLHTTP에 대한 질문과 대답
http://support.microsoft.com/kb/290761/ko
response.redirect 에 대한 고찰
http://classicasp.aspfaq.com/general/what-do-i-need-to-know-about-response-redirect.html
XML DOM 메소드 목록
http://msdn.microsoft.com/en-us/library/ms757828(v=vs.85).aspx
getOption Method 설명
http://msdn.microsoft.com/en-us/library/ms753798(v=vs.85).aspx
예제 소스 파일 :
'플밍_ASP' 카테고리의 다른 글
asp에서 json 파일 호출하여 파싱. 테이블로 보여주기 (0) | 2014.08.05 |
---|---|
asp - LDAP 사용하여 인증하기 방법 (0) | 2014.06.12 |
ADO DataType 목록 (0) | 2013.01.30 |
ms-sql, image type 사용한 이미지파일 쓰기/읽기 소스 (dextuploadpro 사용) (0) | 2013.01.24 |
전 페이지가 아래 POST 방식이 아닐때, 페이지 접근 차단 방법 (0) | 2013.01.16 |