| Author |
Option Explicit causing VBScript error
|
|
| John Kotuby 2006-03-25, 11:59 am |
| Hi all,
I am simply trying to include the Option Explicit declaration at the top of
an ASP page and am getting an error:
Error Type:
Microsoft VBScript compilation (0x800A0400)
Expected statement
/transferkey.asp, line 2
<!-- #INCLUDE FILE="adovbs.inc" -->
<% Option Explicit %>
<SCRIPT> LANGUAGE="VBScript" RUNAT="Server" </SCRIPT>
<% .... other code
%>
What am I doing wrong? According to a book on ASP 3.0 the syntax is correct.
Is it the placement?
Thanks...
| |
| Patrice 2006-03-25, 11:59 am |
| This is <SCRIPT LANGUAGE=... not <SCRIPT> LANGUAGE=
--
Patrice
"John Kotuby" <johnk@powerlist.com> a écrit dans le message de news:
uzq3jJpTGHA.4884@TK2MSFTNGP10.phx.gbl...
> Hi all,
>
> I am simply trying to include the Option Explicit declaration at the top
> of an ASP page and am getting an error:
>
> Error Type:
> Microsoft VBScript compilation (0x800A0400)
> Expected statement
> /transferkey.asp, line 2
>
>
> <!-- #INCLUDE FILE="adovbs.inc" -->
> <% Option Explicit %>
> <SCRIPT> LANGUAGE="VBScript" RUNAT="Server" </SCRIPT>
> <% .... other code
> %>
>
> What am I doing wrong? According to a book on ASP 3.0 the syntax is
> correct. Is it the placement?
>
> Thanks...
>
| |
| Patrice 2006-03-25, 11:59 am |
| Just to be on the safe side, you may want to tell us what you are trying to
do. This should be now syntactically correct but this is just an empty
server side block.
Perhaps you confused with <%@ Language=VBScript %> ?
--
"Patrice" <a@bc.c> a écrit dans le message de news:
epWGtMpTGHA.4772@TK2MSFTNGP09.phx.gbl...
> This is <SCRIPT LANGUAGE=... not <SCRIPT> LANGUAGE=
>
> --
> Patrice
>
> "John Kotuby" <johnk@powerlist.com> a écrit dans le message de news:
> uzq3jJpTGHA.4884@TK2MSFTNGP10.phx.gbl...
>
>
| |
| Anthony Jones 2006-03-25, 11:59 am |
|
"John Kotuby" <johnk@powerlist.com> wrote in message
news:uzq3jJpTGHA.4884@TK2MSFTNGP10.phx.gbl...
> Hi all,
>
> I am simply trying to include the Option Explicit declaration at the top
of
> an ASP page and am getting an error:
>
> Error Type:
> Microsoft VBScript compilation (0x800A0400)
> Expected statement
> /transferkey.asp, line 2
>
>
> <!-- #INCLUDE FILE="adovbs.inc" -->
> <% Option Explicit %>
> <SCRIPT> LANGUAGE="VBScript" RUNAT="Server" </SCRIPT>
> <% .... other code
> %>
>
> What am I doing wrong? According to a book on ASP 3.0 the syntax is
correct.
> Is it the placement?
>
> Thanks...
>
>
Yes Option Explict should be the first line of script and above any content
that is sent to the client.
In your case you have an include file preceeding it which likely contains
script.
Use:-
<% Option Explicit %>
<!-- #INCLUDE FILE="adovbs.inc" -->
Anthony.
| |
| John Kotuby 2006-03-25, 11:59 am |
| Thank you Anthony,
You are indeed correct and how silly of me. Of course the "adovbs.inc" file
includes script.
Placing <% Option Explicit %> at the top fixed the problem.
"Anthony Jones" <Ant@yadayadayada.com> wrote in message
news:eF3lUopTGHA.5108@TK2MSFTNGP09.phx.gbl...
>
> "John Kotuby" <johnk@powerlist.com> wrote in message
> news:uzq3jJpTGHA.4884@TK2MSFTNGP10.phx.gbl...
> of
> correct.
>
> Yes Option Explict should be the first line of script and above any
> content
> that is sent to the client.
>
> In your case you have an include file preceeding it which likely contains
> script.
>
> Use:-
>
> <% Option Explicit %>
> <!-- #INCLUDE FILE="adovbs.inc" -->
>
> Anthony.
>
>
>
| |
| John Kotuby 2006-03-25, 11:59 am |
| Thanks Patrice,
For noticing my Syntax error in the LANGUAGE declaration. Actually the code
never even got to that line because it bombed out on the <% Option Explicit
%> which I had placed after the:
<!-- #INCLUDE FILE="adovbs.inc" -->
Which itself contained script.
Now that I have fixed both errors the code is running.
Thanks again.
"Patrice" <a@bc.c> wrote in message
news:OuCGBRpTGHA.5884@TK2MSFTNGP14.phx.gbl...
> Just to be on the safe side, you may want to tell us what you are trying
> to do. This should be now syntactically correct but this is just an empty
> server side block.
> Perhaps you confused with <%@ Language=VBScript %> ?
> --
>
> "Patrice" <a@bc.c> a écrit dans le message de news:
> epWGtMpTGHA.4772@TK2MSFTNGP09.phx.gbl...
>
>
| |
| Patrice 2006-03-25, 11:59 am |
| Sorry for the poor help, I shouldn't have stopped at the first thing I saw.
A possible approach could be :
- create an include file such as page.asp that contains both the Option
explicit and includes all the present and future files you'll need on each
page such as adovbs.inc (another option would be to use the type library by
declaring it in global.asa).
This way :
- you just have to include this general file and you can start with your
begin script tag.
- if later you need a general function on most of your page you'll be able
to include this file in your general include file and all pages you have
written will be right now ready to use the new function
--
Patrice
"John Kotuby" <johnk@powerlist.com> a écrit dans le message de news:
uC6QbMrTGHA.1688@TK2MSFTNGP11.phx.gbl...
> Thanks Patrice,
>
> For noticing my Syntax error in the LANGUAGE declaration. Actually the
> code never even got to that line because it bombed out on the <% Option
> Explicit %> which I had placed after the:
> <!-- #INCLUDE FILE="adovbs.inc" -->
> Which itself contained script.
>
> Now that I have fixed both errors the code is running.
>
> Thanks again.
>
>
>
> "Patrice" <a@bc.c> wrote in message
> news:OuCGBRpTGHA.5884@TK2MSFTNGP14.phx.gbl...
>
>
|
|
|
|