프로그래밍/ASP

asp error객체 사용

p-a-r-k 2016. 5. 13. 16:29
반응형

<%@ Language=VBScript %> 
<HTML> 
<HEAD> 
</HEAD> 
<BODY>

<%

'//에러코드 시작 상단에 두고 
On Error Resume Next

%>

… 여기에 ASP 코드삽입

<% 
'// 만약 에러가 있다면 메세지 보여주기 
if err.number <> 0 then 
response.Write("<b>err.description :</B>"&err.Description&"<br>") 
response.Write("<b>err.number : </b>"&err.Number&"<br>") 
response.Write("<b>err.Source : </b>"&err.Source&"<br>") 
end if

%>

반응형

'프로그래밍 > ASP' 카테고리의 다른 글

asp cdo.message 메일보내기  (2) 2016.06.01
asp 성능높이는 방법  (0) 2016.05.16
asp 이것만 알면 됨  (0) 2016.05.13
asp 파일 확장자 가져오기  (0) 2015.06.12
asp 엑셀업로드 및 DB에 넣기  (0) 2015.06.12