I'm still using good old ASP with VBScript, and my application has grown so big, I get the error message:
After a lot of testing, I've discovered this number is probably the number of variables I have used in the script.
The actual line number seems to be wrong, as occasionally the line it mentions in the error has no code in it.
I use extensive amount of other asp page inclusions.
Probably should use different methods in the future, but I probably will not rewrite this huge application any time soon, so I need to modify the maximum number for this somehow. Anyone know how that can be done? Registry?
By the way, when I remove a simple code such as:
The number decreases by one.
Please correct me if I'm wrong...but I think it is counting the variables. I'm not using any integers that would exceed the integer maximum size, so I assume it is some built in thing.
Anybody else get this error? Any solutions? Ideas?
Microsoft VBScript runtime error '800a0006'
Overflow: '[number: 32771]'
/default.asp, line 519
After a lot of testing, I've discovered this number is probably the number of variables I have used in the script.
The actual line number seems to be wrong, as occasionally the line it mentions in the error has no code in it.
I use extensive amount of other asp page inclusions.
Probably should use different methods in the future, but I probably will not rewrite this huge application any time soon, so I need to modify the maximum number for this somehow. Anyone know how that can be done? Registry?
By the way, when I remove a simple code such as:
Code:
<%=DateCreated%>
Please correct me if I'm wrong...but I think it is counting the variables. I'm not using any integers that would exceed the integer maximum size, so I assume it is some built in thing.
Anybody else get this error? Any solutions? Ideas?