PRB: VBScript Out of Memory Error when ASP Contains 64 For/NextID: Q174685
|
The following error occurs when previewing an Active Server Pages (ASP) page that contains 64 or more For/Next loops:
NOTE: The loops do not have to be executed, for example, they can be within a case statement that is never executed.Microsoft VBScript compilation error '800a03e9' Out of memory
This is caused by a bug in the VBScript.dll 2.0.
This problem has been fixed in the VBScript.dll 3.0 to be released with Internet Explorer 4.0 and Internet Information Server 4.0
<HTML>
<BODY>
<%
For x = 1 To 1
Response.Write "Hello1"
Next
%>
<P>
<%
For x = 1 To 1
Response.Write "Hello2"
Next
%>
.
.
(removed next 62 For/Next loops to conserve space)
.
.
<%
For x = 1 To 1
Response.Write "Hello65"
Next
%>
<P>
</BODY>
</HTML>
For the latest Knowledge Base articles and other support information on Visual InterDev and Active Server Pages, see the following page on the Microsoft Technical Support site:
http://support.microsoft.com/support/vinterdev/
Additional query words:
Keywords : kbVBScript kbGrpASP
Version : WINDOWS:1.0,1.1,2.0
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: May 10, 1999