Home > vbscript compilation > microsoft vbscript compilation error 800a0400 option

Microsoft Vbscript Compilation Error 800a0400 Option

Contents

New? Today's Posts FAQ Rules Guidelines Search Advanced Search Forum :: Server side development ASP Option explicit error If this is your first visit, be sure to check out the FAQ by clicking the link above. microsoft vbscript compilation error '800a0400' expected statement You may have to register before you can post: click the register link above

Vbscript Compilation Error Expected End Of Statement

to proceed. To start viewing messages, select the forum that you want to visit from the selection below. Enjoy an ad free 1 1 microsoft vbscript compilation error expected statement experience by logging in. Not a member yet? Register. Results 1 to 4 of 4 Thread: Option explicit error Thread Tools Show Printable Version Email this Page… Subscribe to this Thread… Rate This Thread Current Rating 800a0400 expected_statement 80 Excellent Good Average Bad Terrible 04-26-2012,09:59 PM #1 SteveH View Profile View Forum Posts Regular Coder Join Date Nov 2005 Posts 750 Thanks 138 Thanked 1 Time in 1 Post Option explicit error Hello If I do not insert a doctype (strict or loose are the types I have tried), my Web form page seems to work fine. But when I do, I get the following error: Microsoft VBScript compilation error '800a0400' Expected

Expected Statement End If

statement /contact_us.asp, line 9 option explicit I would be happy to leave out the doctype, but I am trying to use the CSS 'focus' snippet Code: input:focus { background-color:yellow; and for it to work, :focus to work in IE8, a DOCTYPE must be declared according to the W3 Schools site: http://www.w3schools.com/cssref/sel_focus.asp How would I get round that problem, please? Reply With Quote 04-26-2012,11:52 PM #2 Old Pedant View Profile View Forum Posts Supreme Master coder! Join Date Feb 2009 Posts 29,698 Thanks 93 Thanked 4,947 Times in 4,908 Posts ASP requires the OPTION EXPLICIT to be first on the page, excepting for <%@ xxx %> declarations. So you really do need to put it before the DOCTYPE. And it really is perfectly okay to do so. Remember *NO* code in <%...%> tags is seen directly by the browser. Only if you Response.Write something from within <%...%> is it sent to the browser. So if you write Code: <%@ Language="VBScript" %> <% OPTION EXPLICIT %> or even if you prefer for some reason to do Code: <%@ Language="VBScript" %> <% OPTION EXPLICIT %> <% Response.Write "" %> the browser will never see anything prior to the . And it is only what the browser sees that matters for any HTML

"Expected Statement" Option Explicit Error. vbscript goto It is driving me crazy, can anyone vbscript tutorial explain what is wrong? <%@Language=VBScript%>
<% Option Explicit Dim useraction Dim dsn, sql, conn, conn1, rs, sql1, found Dim Prefix, FirstName, LastName, Address, City, ST, http://www.codingforums.com/asp/258840-option-explicit-error.html PostalCode, CountryRegion, HomePhone, WorkPhone, EmailAddress, DateJoined, Notes, MailingListJoin, pwd DIM MyCDONTSMail useraction=Request("action") Select Case useraction Case "add" Prefix=Request.form("Prefix") FirstName=Request.form("FirstName") LastName=Request.form("LastName") Address=Request.form("Address") City=Request.form("City") ST=Request.form("ST") PostalCode=Request.form("PostalCode") CountryRegion=Request.form("CountryRegion") HomePhone=Request.form("HomePhone") WorkPhone=Request.form("WorkPhone") EmailAddress=Request.form("EmailAddress") DateJoined=Request.form("DateJoined") Notes=Request.form("Notes") MailingListJoin=Request.form("MailingListJoin") pwd=Request.form("pwd") sql1="SELECT * FROM users WHERE pwd='" & pwd http://www.xtremevbtalk.com/archive/index.php/t-161724.html & "'" dsn="DBQ=" & Server.Mappath("db/mydb.mdb") & ";Driver={Microsoft Access Driver (*.mdb)};" set conn = server.createObject("adodb.connection") set rs = server.createObject("adodb.recordset") conn.open dsn rs.open sql1,conn found=0 do while not rs.eof if rs("pwd") = pwd Then conn.close set conn=nothing found=1 response.write "

ADD A RECORD

" %> <% response.write "

This password already taken up." response.write "
Press Back button and select another
" response.end end if loop if found=0 Then sql="INSERT INTO users (Prefix, FirstName, LastName, Address, City, ST, PostalCode, CountryRegion, HomePhone, WorkPhone, EmailAddress, DateJoined, Notes, MailingListJoin, pwd) Values('"&Prefix&"', '"&FirstName&"', '"&LastName&"', '"&Address&"', '"&City&"', '"&ST&"', '"&PostalCode&"', '"&CountryRegion&"', '"&HomePhone&"', '"&WorkPhone&"', '"&EmailAddress&"', '"&DateJoined&"', '"&Notes&"', '"&MailingListJoin&"', '"&pwd&"')" dsn="DBQ=" & Server.Mappath("db/mydb.mdb") & ";Dri

ASP.NET Community Standup Forums Help Home/ASP.NET Forums/Community/Free For All/error '800a0400' / Expected statement error http://forums.asp.net/t/1495662.aspx?error+800a0400+Expected+statement+error error '800a0400' / Expected statement error [Answered]RSS 2 replies Last post Nov 25, 2009 09:18 AM by atconway ‹ Previous Thread|Next Thread › Print Share Twitter Facebook Email Shortcuts Active Threads Unanswered Threads Unresolved Threads Support Options Advanced Search Reply nbommela.msc... None 0 Points 1 Post error '800a0400' / vbscript compilation Expected statement error Nov 21, 2009 11:08 AM|nbommela.mscs|LINK I got an error when trying to execute a code, please help me to solve given problem..... Code is given below: Microsoft VBScript compilation Expected statement /OnlineBookStore/AddItemProcess.asp, line 3 Option Explicit error '800a0400' My Code: <% Option Explicit Dim vbscript compilation error StrTechName, StrBookName, StrISBN, StrPrice, IntQuantity, IntCounter, IntCount, IntShowCounter, IntItemID, BlnDuplicate, IntTotalItems, DblTotalPrice, DblFinalPrice StrTechName = Trim(Request.Form("TechName")) StrBookName = Trim(Request.Form("BookName")) StrISBN = Trim(Request.Form("ISBN")) StrPrice = Trim(Request.Form("Price")) IntQuantity = Trim(Request.Form("TxtQuantity")) IF Session("LoginBuyer") = "" OR Session("LoginUser") = "" Then Response.Redirect("Default.asp") END IF BlnDuplicate = False IntCount = CInt(Session("TotalItems")) IF IntCount > 0 Then For IntCounter = 1 to IntCount IF Session("MyItems")("ISBN" & IntCounter) = StrISBN And Session("MyItems")("Purchase" & IntCounter) = "yes" Then BlnDuplicate = True Exit For END IF Next END IF IF BlnDuplicate = True Then IntQuantity = IntQuantity + CInt(Session("MyItems")("Quantity" & IntCounter)) Session("MyItems")("Quantity" & IntCounter) = IntQuantity ELSE IntItemID = CInt(Session("TotalItems")) IntItemID = IntItemID + 1 Session("MyItems").Add"BookName" & IntItemID, StrBookName Session("MyItems").Add "ISBN" & IntItemID, StrISBN Session("MyItems").Add "Price" & IntItemID, StrPrice Session("MyItems").Add "Quantity" & IntItemID, IntQuantity Session("MyItems").Add "Purchase" & IntItemID, "yes" Session("TotalItems") = Session("TotalItems") + 1 END IF %>

 

Related content

800a03ea vbscript compilation error

a ea Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error Expected End Of Statement a li li a href Vbscript Compilation Error Expected Identifier a li ul td tr tbody table p here for a quick overview of the site relatedl Help Center Detailed answers to any questions vbscript compilation error a ea class you might have Meta Discuss the workings and policies of this p h id Microsoft Vbscript Compilation Error a p site About Us

800a03ee vbscript compilation error

a ee Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Expected Statement a li li a href Vbscript Compilation Error a ea a li li a href Vbscript Compilation Error Name Redefined a li li a href Vbscript Compilation Error Cannot Use Parentheses When Calling A Sub a li ul td tr tbody table p jokes This Error A EE can be tricky While it is indeed relatedl a syntax error it may not be where microsoft vbscript compilation error a you expect Therefore check the Char

800a0409 vbscript compilation error

a Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error a ea a li ul td tr tbody table p A - Unterminated string constant An easy error to cure especially if you count the Char number Naturally start at relatedl the beginning of the line referenced in the error microsoft vbscript compilation error a message Solving A really is that easy Introduction to Error Code A This

const strfolder syntax error

Const Strfolder Syntax Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error a a li li a href Use Strict a li ul td tr tbody table p relatedl p h id Microsoft Vbscript Compilation Error a p HomeLibraryLearnDownloadsRepositoryCommunityForumsBlog Ask a question Quick microsoft vbscript compilation error a access Forums home Browse forums users FAQ Search p h id Vbscript Compilation Error Syntax Error p related threads Remove From

error 1032 invalid character

Error Invalid Character table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a ea a li li a href Microsoft Vbscript Compilation Error Fix a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site relatedl About Us Learn more about Stack Overflow the company Business Learn microsoft vbscript compilation error invalid character more about hiring developers or posting ads with us Stack Overflow Questions Jobs

error 800a0401

Error a table id toc tbody tr td div id toctitle Contents div ul li a href Vb Error a a li li a href Expected End Of Statement Vbscript Compilation Error a li li a href Expected End Of Statement Error In Qtp a li li a href Vbscript Compilation Error Expected Statement a li ul td tr tbody table p A - Expected End of Statement Good news here is another example of a WSH error message with a helpful Char number Count along the line until you get relatedl to the offending character With Error A start

error 800a0400 expected statement

Error a Expected Statement table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Vbscript Compilation Error Expected End Of Statement a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better error message I have noticed with error A how often the problem is at the relatedl beginning or the end of the line mentioned in the vbs error a error message Introduction

error 800a0400

Error a table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Expected Statement a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href a Expected statement a li li a href Expected Statement End If a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company relatedl Business Learn more

error code 800a0400

Error Code a table id toc tbody tr td div id toctitle Contents div ul li a href a Expected statement a li li a href Expected Statement End If a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better error message I have relatedl noticed with error A how often the problem is microsoft vbscript compilation error a expected statement at the beginning or the end of the line mentioned in the vbs error a error message Introduction to Code A Error code A is a generic

error type microsoft vbscript compilation 0x800a0400 expected statement

Error Type Microsoft Vbscript Compilation x a Expected Statement table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Expected Statement a li li a href a Expected statement a li li a href Expected Statement End If a li li a href Vbscript Tutorial a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better error message I have noticed with error A how often the problem is at the relatedl beginning or the end of the line

error type microsoft vbscript compilation 0x800a0408 invalid character

Error Type Microsoft Vbscript Compilation x a Invalid Character table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Invalid Character a li li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error Fix a li li a href Microsoft Vbscript Compilation Error a a li ul td tr tbody table p Ask a Question Need help Post your question and get tips solutions from a community of relatedl IT Pros Developers It's quick easy p h id Microsoft Vbscript Compilation Error a

error type microsoft vbscript compilation 0x800a0401 expected end of statement

Error Type Microsoft Vbscript Compilation x a Expected End Of Statement table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Expected End Of Statement Dim a li li a href a Expected end of statement a li ul td tr tbody table p New Today's Posts FAQ Rules Guidelines Search Advanced Search relatedl Forum Server side development ASP Error Type Microsoft expected end of statement vbscript compilation error VBScript compilation x A Expected end of statement If this is your p h id Microsoft Vbscript Compilation Error a Expected

expected end of statement vbscript compilation error

Expected End Of Statement Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a f Expected end a li li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error Name Redefined a li li a href Vbscript Compilation Error Cannot Use Parentheses When Calling A Sub a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to relatedl any questions you might have Meta Discuss the microsoft vbscript compilation error a

expected identifier error in vbscript

Expected Identifier Error In Vbscript table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Reserved Words a li li a href Expected Identifier Error In Qtp a li li a href Expected Identifier Error In Uft a li ul td tr tbody table p that is not a VBScript reserved microsoft vbscript compilation error a expected end of statement word Enclose the reserved word in img code p Need Help about VBScript Download VbsEdit This package includes VbsEdit -bit VbsEdit -bit HtaEdit -bit and HtaEdit -bit The evaluation version never expires Home Copyright

how to fix microsoft vbscript compilation error

How To Fix Microsoft Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error a ee Expected a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of relatedl this site About Us Learn more about Stack Overflow the company microsoft vbscript compilation error a Business

invalid character error in vbscript

Invalid Character Error In Vbscript table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a ea a li li a href How To Run Vbscript a li li a href Notepad Tricks a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss relatedl the workings and policies of this site About Us Learn microsoft vbscript compilation error a more about Stack Overflow the company Business Learn more about hiring developers or vbscript

invalid character vbscript error

Invalid Character Vbscript Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error Invalid Character a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a ea a li li a href Microsoft Vbscript Compilation Error a a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies relatedl of this site About Us Learn more about Stack Overflow

invalid character error in qtp

Invalid Character Error In Qtp table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error a ea a li li a href Notepad Tricks a li ul td tr tbody table p - Invalid Character Introduction to Code A This error code A occurs when you execute a VBScript A relatedl wild guess a problem with an apostrophe possibly in microsoft vbscript compilation error invalid character a 'REM statement The Symptoms You Get The script does not execute p h id

invalid character vbscript compilation error

Invalid Character Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a a li li a href How To Run Vbscript a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might relatedl have Meta Discuss the workings and policies of this p h id Microsoft Vbscript Compilation Error a p site

microsoft vbscript compilation error code 800a0400

Microsoft Vbscript Compilation Error Code a table id toc tbody tr td div id toctitle Contents div ul li a href Expected Statement End If a li ul td tr tbody table p Tips Tricks Top Articles Beginner Articles Technical Blogs Posting Update Guidelines Article Help Forum Article Competition Submit an article or tip Post your Blog quick answersQ A Ask relatedl a Question View Unanswered Questions View All Questions Linux questions vbscript compilation error expected end of statement C questions ASP NET questions SQL questions fabric questions discussionsforums All Message Boards Application Lifecycle microsoft vbscript compilation error expected statement

microsoft vbscript compilation error expected statement

Microsoft Vbscript Compilation Error Expected Statement table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Expected Statement End If a li li a href Vbscript Expected a li li a href Vbscript Hello World a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better relatedl error message I have noticed with error A how p h id Microsoft Vbscript Compilation Error Expected Statement p often the problem is at the beginning

microsoft vbscript compilation error 800a0400 expected statement

Microsoft Vbscript Compilation Error a Expected Statement table id toc tbody tr td div id toctitle Contents div ul li a href Expected Statement End If a li li a href Vbscript Hello World a li li a href How To Run Vbscript In Cmd a li ul td tr tbody table p - Expected Statement Perhaps instead of 'Expected Statement' 'missing character' would be a better error message I have noticed with error A how often relatedl the problem is at the beginning or the end of vbscript compilation error expected end of statement the line mentioned in the

microsoft vbscript compilation error invalid character

Microsoft Vbscript Compilation Error Invalid Character table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error a ea a li li a href How To Run Vbscript a li ul td tr tbody table p here for a quick overview relatedl of the site Help Center Detailed answers microsoft vbscript compilation error a to any questions you might have Meta Discuss the workings p h id Vbscript Compilation Error Syntax Error p and policies of this site About Us Learn more

microsoft vbscript compilation error 800a0400 option explicit

Microsoft Vbscript Compilation Error a Option Explicit table id toc tbody tr td div id toctitle Contents div ul li a href Expected Statement End If a li li a href Vbscript Goto a li ul td tr tbody table p of my ASP page Microsoft VBScript compilation error ' a ' Expected relatedl statement mailform asp line Option Explicit Would microsoft vbscript compilation error a expected statement anyone know why that is westmich - - UTC vbscript compilation error expected end of statement Are there any variables you are not initializing SeFu - - UTC hmm not sure i

microsoft vbscript compilation error 800a0400

Microsoft Vbscript Compilation Error a table id toc tbody tr td div id toctitle Contents div ul li a href a Expected statement a li li a href Expected Statement End If a li li a href Vbscript Goto a li ul td tr tbody table p p p p p p p MICROSOFT VBSCRIPT COMPILATION ERROR ' A ' IDMWS DOCVIEW ASP LINE -- INCLUDE FILE IN Technote troubleshooting Problem Abstract Microsoft VBScript compilation error ' a 'Expected statement idmws Do Resolving the problem Microsoft VBScript compilation error ' a ' Expected statement idmws DocView asp line -- INCLUDE

microsoft vbscript compilation error 800a0408 invalid character

Microsoft Vbscript Compilation Error a Invalid Character table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a a li li a href How To Run Vbscript a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have relatedl Meta Discuss the workings and policies of this site p h id Microsoft Vbscript Compilation Error

microsoft vbscript compilation error

Microsoft Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a a li li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error Fix a li li a href Microsoft Vbscript Compilation Error a a li ul td tr tbody table p HomeLibraryLearnDownloadsRepositoryCommunityForumsBlog Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My Forums Answered by Getting Microsoft VBScript compilation relatedl error Expected statement and Terminated with exit code p h id Microsoft

microsoft vbscript compilation error '800a0401

Microsoft Vbscript Compilation Error ' a table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error a Expected End Of Statement Dim a li li a href Expected Statement Error In Vbscript a li li a href Expected End Of Statement Uft a li li a href Microsoft Vbscript Compilation Error Expected a li ul td tr tbody table p A - Expected End of Statement Good news here is another example of a WSH error message with a helpful Char number Count along relatedl the line until you get to

microsoft vbscript compilation error invalid character line 1 column 1

Microsoft Vbscript Compilation Error Invalid Character Line Column table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a ea a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the relatedl workings and policies of this site About Us Learn more microsoft vbscript compilation error a about Stack Overflow the company

microsoft vbscript compilation error 800a0408

Microsoft Vbscript Compilation Error a table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Microsoft Vbscript Compilation Error a ea a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you relatedl might have Meta Discuss the workings and policies of microsoft vbscript compilation error a this site About Us Learn more about Stack Overflow the company Business Learn p

microsoft vbscript compilation error 800a0400 expected statement end if

Microsoft Vbscript Compilation Error a Expected Statement End If table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Expected End Of Statement a li li a href a Expected statement a li li a href Vbscript Hello World a li li a href Vbscript Tutorial a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies relatedl of this site About Us Learn more about Stack Overflow p h id

ms vbscript compilation error 800a0400

Ms Vbscript Compilation Error a table id toc tbody tr td div id toctitle Contents div ul li a href Vbscript Compilation Error Expected End Of Statement a li li a href Expected Statement End If a li li a href Vbscript Expected a li li a href Vbscript Hello World a li ul td tr tbody table p Ask a Question microsoft vbscript compilation error expected statement Need help Post your question and get tips solutions from a expected statement a community of IT Pros Developers It's quick easy Microsoft VBScript compilation error ' a ' p h id

ms vbscript compilation error

Ms Vbscript Compilation Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Vbscript Compilation Error Expected Statement a li li a href Vbscript Compilation Error Syntax Error a li li a href Microsoft Vbscript Compilation Error Fix a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies relatedl of this site About Us Learn more about Stack Overflow microsoft vbscript compilation error a the company Business Learn more about hiring