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 runtime error '800a01f5' Illegal assignment: 'I'
- Article ID:
124 - Date Created
Wednesday, March 23, 2011 - This Article Has been Viewed
3104 times - Short Desc
When creating Variables, make sure that you do not try to reuse a variable after it id removed. - Details
When creating variable and assigning them their properties, you may reuse without know that same variable, and this will cause the following error.
Microsoft VBScript runtime error '800a01f5'
Illegal assignment: 'I'
/Page.asp, line 222 - Recreate Issue
To recreate this issue.
<%
i = 1
%>
In the above example, we have assigned the I once in our page, and are trying to assign it again, thus giving us this error. - Resolve Issue
To resolve this issue:
First create your Variable
<%
i = 1
%>
Now, we are utilizing the I so we can only use it within the pattern.
Now, when we need to use a variable in another section of the page.
Create a new variable
<%
z = 1
%>
In the above example, we have created another variable with the name of Z
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