'on error next resume'에 해당되는 글 1건
- 2009.09.22 ON ERROR RESUME NEXT
이걸 씀으로 모든 에러가 떴을때 에러를 출력하는게 아니고 에러정보를 출력하거나 그냥 출력을 안되게 할수 있다.
하지만 무한반복에 빠져들수 있음으로 남용은 금물.
On Error Resume Next
Response.Write "에러 상세 설명<BR> "
Response.Write Err.Number & " - 에러 개수<BR>"
Response.Write Err.Description & " - 에러 메시지<BR>"
Response.Write Err.Source & " - 에러 출처<BR>"
Response.Write Err.NativeError & " - DB 에러번호<BR>"
Response.Write Err.HelpFile & " - 에러 파일<BR>"
Response.Write Err.HelpContext & " - 에러 Context<BR>"
End If
'프로그래밍 > asp, php' 카테고리의 다른 글
[ASP] Err 객체 (0) | 2010.05.27 |
---|---|
[ASP] read/write configuration class (xml version) (0) | 2009.08.12 |
[ASP] asp로 xml 파일 저장 (0) | 2009.08.12 |
[asp] 기본 함수 (0) | 2009.08.01 |
Request.ServerVariables (0) | 2009.07.29 |