
Hi,
I am getting the following error:
Microsoft VBScript compilation error '800a03ea'
Syntax error
/admin/metatraffic/class.asp, line 20
Class clsMetaTraffic
I have three pages involved:
Menu.asp ( include file providing menu )
sdk_example.asp
chgpasswd.asp
The menu file has a item called Total Visits: which has the <% = intVisitsTotal %> and the include sdk_example. I do get a Total visits result. But in the same menu when I click to go to chgpasswd.asp I get the above error. Now in the chgpasswd.asp file there is a database call :
Dim mysql, RS, id
id = Session("id")
mySQL = "Select Fname, Lname From staff where id = " & id
set RS=MyConn.execute(mySQL)
Do While Not RS.EOF
If I remove this I nolonger get the error. Do you have any idea what might be causing the error?
Thanks for your help! ;-)
800a03ea Syntax Error Class clsMetaTraffic
Your VBScript contain is missing a character. Note: The clue Source: Microsoft VBScript compilation error, means it is a syntax error
good luck!