S
Schoo
I have a simple ASPX page that uses 'response.write' to take data from a
dataset, scroll through it and write it back to the page as HTML. This
works just great, until you get too many records in the dataset (it fails
when there is about 575 records in the dataset). The application event log
on the server (Windows 2000) says: "aspnet_wp.exe (PID:...) was recycled
because memory consumption exceeded the 153 MB (60 percent of available
RAM). When this goes into production, I expect the database to contain
hundreds of thousands of records (SQL 2000).
I have developed other db apps so I don't think it is the dataset, in fact I
believe I have established that the problem is that the server will not
allow my app to write all that information (strings) to the html page. Is
there a way to commit all the strings as it writes them to the page? Is
there a setting to allow the memory to expand? Is there some other
technique I should be using to do this?
Scott
dataset, scroll through it and write it back to the page as HTML. This
works just great, until you get too many records in the dataset (it fails
when there is about 575 records in the dataset). The application event log
on the server (Windows 2000) says: "aspnet_wp.exe (PID:...) was recycled
because memory consumption exceeded the 153 MB (60 percent of available
RAM). When this goes into production, I expect the database to contain
hundreds of thousands of records (SQL 2000).
I have developed other db apps so I don't think it is the dataset, in fact I
believe I have established that the problem is that the server will not
allow my app to write all that information (strings) to the html page. Is
there a way to commit all the strings as it writes them to the page? Is
there a setting to allow the memory to expand? Is there some other
technique I should be using to do this?
Scott