A
AT
I have the ASP page
<%@ Language=VBScript %>
<%
Option Explicit
Response.End
A = b
%>
On some servers I get parsing error on some I don't
Error says that variable A is not defined.
This is understandable but the script is not even supposed to get to A = b
line
because of Response.end
So there is some setting somewhere responsible for parsing.
Any ideas? please share.
--
_________________________
Anatoli Trifonov
Software Developer & Consultant
Minds are like parachutes - they only function when open.
--Thomas Dewar
<%@ Language=VBScript %>
<%
Option Explicit
Response.End
A = b
%>
On some servers I get parsing error on some I don't
Error says that variable A is not defined.
This is understandable but the script is not even supposed to get to A = b
line
because of Response.end
So there is some setting somewhere responsible for parsing.
Any ideas? please share.
--
_________________________
Anatoli Trifonov
Software Developer & Consultant
Minds are like parachutes - they only function when open.
--Thomas Dewar