CFF KB - Carrz-Fox-Fire Promotions Knowledge Base
CFF KB is all about 1 thing: The Sharing of Knowledge and the Power we gain from it.Knowledge Base
- Breadrumbs:
Microsoft VBScript compilation (0x800A03EA) Syntax error
- Article ID:
28 - Date Created
Wednesday, October 6, 2010 - Last Updated
Friday, December 24, 2010 - This Article Has been Viewed
3256 times - Short Desc
When doing a response.write you will sometimes add in one of more unnessary & ampersand's into your equation. - Details
Issue #1:
When writing out your response.write or similar code, you may write out to many ampersands into your equation.
Microsoft VBScript compilation (0x800A03EA)
Syntax error
/page.asp, line 81, column 15
Response.Write(&"("&MyFolder&")"&)
---------------------^
Issue #2:
Can come from 1 to many = (equal signs) in the making of your variables.
Microsoft VBScript compilation (0x800A03EA)
Syntax error
/Header.asp, line 24, column 12
strid = = rsUser("ID")
--------^ - Recreate Issue
To recreate this issue.
Issue #1:<%
=&"("&MyFolder&")"&
%>
Issue #2:<%
strid = = rsUser("ID")
%> - Resolve Issue
To correct this issue
Issue #1:<%
=("&MyFolder&")
%>
(or)<%
=MyFolder
%>
As you can see, we removed the beginning and ending ampersand from the string.
Issue #2:<%
strid = rsUser("ID")
%>
As you can see, we have removed the extra = sign from the variable creation.
Share With Friends (Updated 6-8-2010)
Recent Articles
All Topics
- Coming Soon - Knowledge Exchange
Trending Articles
- Microsoft VBScript runtime error '800a0046' Permission denied FileSystemObject 24695
- Microsoft OLE DB Provider for SQL Server error '80040e57' String or binary data would be truncated. or The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data. 21297
- ADODB.Parameters error '800a0e7c' Parameter object is improperly defined 19544
- After Effects warning: Audio conforming failed for the following file .cfa. Perhaps due to disk space 17785
- The backup set holds a backup of a database other than the existing 16825