G
Guest
I have migrated my asp application to asp.net some time ago - but I am still
having some difficulties in understanding the best way to mange some tasks.
I currently have a page that loads a aspx web page - this page is
continually refreshed - every 5 seconds or so. To do this I use the download
behavior on the client to call a particular page - say newchart.aspx. The
newchart.aspx than calls a custom component (vb app on another machine using
dcom) and this app goes and creates a chartXXX.aspx file in the temp
directory on the web server. newchart.aspx than calls this chart123.aspx and
returns the result of this page back to the client. chartXXX.aspx is unique
for every call.
On each call the memory on the server increases - until the point it resets.
I used this method in asp extensively and never had these problems - but the
changes in asp.net means that this is not be best way to do this.
Can anyone suggest to me a better way of managing something like this??
My custom app on the remote computer has the smarts of what needs to be
returned to the client and sometimes it simply writes a html page to the temp
directory and this gets returned to the client - this causes no problem - the
difficulty happens when a aspx file is written.
having some difficulties in understanding the best way to mange some tasks.
I currently have a page that loads a aspx web page - this page is
continually refreshed - every 5 seconds or so. To do this I use the download
behavior on the client to call a particular page - say newchart.aspx. The
newchart.aspx than calls a custom component (vb app on another machine using
dcom) and this app goes and creates a chartXXX.aspx file in the temp
directory on the web server. newchart.aspx than calls this chart123.aspx and
returns the result of this page back to the client. chartXXX.aspx is unique
for every call.
On each call the memory on the server increases - until the point it resets.
I used this method in asp extensively and never had these problems - but the
changes in asp.net means that this is not be best way to do this.
Can anyone suggest to me a better way of managing something like this??
My custom app on the remote computer has the smarts of what needs to be
returned to the client and sometimes it simply writes a html page to the temp
directory and this gets returned to the client - this causes no problem - the
difficulty happens when a aspx file is written.