R
race4space
Hi, IIS is not displaying run time errors - the various debugging options
(Enable Server Side Debugging, Send Errors to Browser) have been set to true
in the IIS console.
No Errors are sent to browser and the script stops running at the error.
This occurs for instance with an Option Explicit error - ie a non
dimensioned variable is referenced in code with Option Explicit set.
<%@ Language=VBScript %>
<% Option Explicit %>
<%
Dim testMe
testMe = "Hello World!"
Response.Write "testMy : " & testMy
Response.End
%>
Any comments , please ?
(Enable Server Side Debugging, Send Errors to Browser) have been set to true
in the IIS console.
No Errors are sent to browser and the script stops running at the error.
This occurs for instance with an Option Explicit error - ie a non
dimensioned variable is referenced in code with Option Explicit set.
<%@ Language=VBScript %>
<% Option Explicit %>
<%
Dim testMe
testMe = "Hello World!"
Response.Write "testMy : " & testMy
Response.End
%>
Any comments , please ?