IIS has quit displaying ASP errors it finds. Errors from SQL Server are displayed as are "page not found" errors but VBScript syntax errors are not. For example, the following code should give the error that x has not been declared but the page just stops processing after displaying "here".
<%
response.write( "here")
x
%>
Thanks!
<%
response.write( "here")
x
%>
Thanks!
Comment