Microsoft VBScript compilation error "800a0400" option explicit

Microsoft VBScript compilation error "800a0400" option explicit

am 06.04.2008 23:25:12 von S N

i am attaching the error , and then i am pasting the full asp code below it.

please help


error message
Microsoft VBScript compilation error '800a0400'

Expected statement

/test11.asp, line 7

option explicit
^
Now the asp file
______________________



<% @LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>

<% Response.CharSet = "UTF-8" %>
<% option explicit %>




New Page 1



<% response.write "hello" %>








>

Re: Microsoft VBScript compilation error "800a0400" option explicit

am 07.04.2008 00:27:49 von Jon Paal

out of order commands...

try this:

<% @LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<% option explicit %>
<% Response.CharSet = "UTF-8" %>




New Page 1


<% response.write "hello" %>