매번 사용 하려고 하면 까먹는 코드

찾기도 짜증나서 적어 놓음


On Error Resume Next

'에러나는 코드 넣을것

If Request.Form("sbmtMultiply")<>"" then 'If multiply is clicked

   Value=Cint(Request.Form("txtA"))*Cint(Request.Form("txtB"))

End If

If Request.Form("sbmtDivide")<>"" then 'If divide is clicked

   Value=Cint(Request.Form("txtA"))/Cint(Request.Form("txtB"))

End If

If Err.number<>0 then

   If Err.number=11 then  '11 is the number that occurs for division by zero.

      Response.Write "This is a custom message. You cannot divide by zero."

      Response.Write "Please type a different value in the second textbox!<p>"

else

      Response.Write "An Error Has Occurred on this page!<BR>"

      Response.Write "The Error Number is: " & Err.number & "<BR>"

      Response.Write "The Description given is: " & Err.Description & "<BR>"

   End If

End If


에러에 대한 번호화 에러 번호에 대한 설명해줌

자세하게 나오지는 않음.

 그냥 에러 날때 무엇인지는 확인 가능 하나

몇번째 줄인지는 나오질 않음

분명 나타나게 하는게 있을거임

내가 모를뿐


+ Recent posts