//FORM 대신 POST
//readyState는 xmlhttp에서 반환된 데이터의 진행 상태입니다. 0=로드 중, 1=초기화되지 않음, 2=로드됨, 3=실행 중, 4=완료
//컴포넌트 설치 여부
isComponentInstalled("{6B053A4B-A7EC-4D3D-4567-B8FF8A1A5739}", "comComponentID"))
//웹페이지가 존재하는지 확인
function CheckURL(URL)
{
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.Open("GET",URL, false)
try
{
xmlhttp.Send();
var result = xmlhttp.status;
}
catch(e) {return(false) }
if(result==200)
{
true 반환
}
srno:
회: