Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 정규식
- FileSystemObject
- javascript 한글입력체크
- sql랭킹
- join
- WML
- injection
- ERD
- sql업데이트
- 자바기초
- 한글입력체크
- array
- sql순위
- 이미지세로길이
- tempDB
- SPLIT
- instr
- VarType
- xmldom
- MSSQL보안
- asp함수
- jdbc driver
- wap
- 인젝션
- update
- XML
- inner join
- VARIABLE
- JavaScript
- 이미지가로길이
Archives
- Today
- Total
3초기억력
ASP - 에러코드 출력하기, err.number, err 본문
on Error Resume Next
asp 코딩 어쩌구 저쩌구~~~
asp 코딩 어쩌구 저쩌구~~~
asp 코딩 어쩌구 저쩌구~~~
asp 코딩 어쩌구 저쩌구~~~
If Err.Number <> 0 then
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
Note that the following two lines of code are the same:
아래 2개의 코딩은 같다.
If Err.Number <> 0 Then
If Err <> 0 Then
If Err <> 0 Then
또다른 참고 URL : http://support.microsoft.com/kb/300043/ko
나누기에 대한..
X=Cint("x") Y=(3/0)Response.Write Err.Description
이 코드는 0으로 나누기 오류 메시지를 표시하지만 형식 불일치 문제에 대한 메시지는 표시하지 않습니다.
<% ' You can clear the error information in the Err object by calling ' the clear method: Err.Clear ' You can also raise an error of your own if you need to: Err.Raise 1, "ASP 101", "This is a custom error that I raised!" %> <p> Error details: </p> <table border="1"> <tr> <td>Err.Source</td> <td><%= Err.Source %></td> </tr> <tr> <td>Err.Number</td> <td><%= Err.Number %></td> </tr> <tr> <td>Err.Description</td> <td><%= Err.Description %></td> </tr> </table> <% ' Turn "error-handling" back off... after the next line the ' script will break as normal if any errors happen. On Error Goto 0
%>
'플밍_ASP' 카테고리의 다른 글
ASP Function - 시작문자, 끝문자 사이의 문자열 추출하기 (0) | 2011.04.13 |
---|---|
ASP - FileSystemObject 로 Unique 파일명 생성하기 function (0) | 2011.04.13 |
ASP - 정규식을 이용한 html 태그 제거 함수 (0) | 2011.03.29 |
ASP - 확장자 추출 하기 (0) | 2011.03.29 |
ASP - 외부 URL 이미지 가져오기 (0) | 2011.03.25 |
Comments