[Classic ASP] 예외처리 , 에러 코드(try 비슷하게 쓸 수 있음)
ASP.NET에서는 try catch 구문이 있지만 asp에는 존재하지 않는다. 대신 사용할 수 있는 구문이 On Error 구문이다. <% on error resume next Insert 시도.. if err.number<>0 then Response.Write "insert Error" else…
0 Comments
2023년 09월 06일
ASP.NET에서는 try catch 구문이 있지만 asp에는 존재하지 않는다. 대신 사용할 수 있는 구문이 On Error 구문이다. <% on error resume next Insert 시도.. if err.number<>0 then Response.Write "insert Error" else…