re:
!>IIS is not displaying run time errors
!> <%@ Language=VBScript %>
VBScript is not a server programming language. It's a client-side programming language.
IIS doesn't even know any error occurred in that script.
You need to debug VBScript client-side.
Juan T. Llibre, asp.net MVP
asp.net faq :
http://asp.net.do/faq/
foros de asp.net, en español :
http://asp.net.do/foros/
======================================
"race4space" <> wrote in message
news:04339B06-0A90-44A9-993D-...
> 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 ?
>
>
>