프로그래밍/ASP

[ASP] IIS7 에서 ASP 구문 오류 표시 방법

큐레이트 2019. 1. 10. 20:55
반응형
An error occurred on the server when processing the URL. Please contact the system administrator.

If you are the system administrator please click here to find out more about this error.


ASP개발 중 위와 같은 메세지가 발생한다면 스크립트 오류가 발생한 것이다.



대처방법

  • IIS 관리자 -> ASP -> 디버깅 속성 > 브라우저 오류 전송 값 True로 변경 -> 적용



IIS ASP Setting

[설정1]


ASP browser error send(debug)

[설정2]





ex)

ASP Source


1
2
3
4
<%
    'division by zero overflow
    Response.write 0/0
%>
cs


브라우저에 오류 전송 false

browser error false


브라우저에 오류 전송 True

browser error true

반응형