Greetings,
I have a webpage that, on the click of a button, generates a dynamic, Classic ASP-based result set that exports into Microsoft Excel. Some of my result sets exceed the virtual memory maximum, and I get the following error:
I've turned off the buffer, but it hasn't resolved the problem, and I'm seeking ways to resolve the issue without changing the metafile, if possible.
Here's the first few lines of code to show the Excel export and turning off the buffer:
I welcome whatever help anyone can offer.
Regards,
j
I have a webpage that, on the click of a button, generates a dynamic, Classic ASP-based result set that exports into Microsoft Excel. Some of my result sets exceed the virtual memory maximum, and I get the following error:
Code:
Response object error 'ASP 0100 : 8007000e' Out of memory /CIMS/ExportToExcel_TrkgCust.asp, line 0 Unable to allocate required memory.
Here's the first few lines of code to show the Excel export and turning off the buffer:
Code:
<% Response.ContentType = "application/vnd.ms-excel" %> <% Response.Buffer=false%>
Regards,
j
Comment