N
Nicholas Paldino [.NET/C# MVP]
Coskun,
What I would do is redirect the user to a different page which indicates
that a the processing is occuring. This page would refresh itself every few
seconds or so.
Once you have that, the page that refreshes would check a session
variable to see if the content is ready. If it is, then it redirects to the
page with the content.
Before you redirect to the original progress page, you would kick off
the processing in another thread, and then at the end of that thread, you
would set the variable in the session that is checked on the progress page
that refreshes itself.
Hope this helps.
What I would do is redirect the user to a different page which indicates
that a the processing is occuring. This page would refresh itself every few
seconds or so.
Once you have that, the page that refreshes would check a session
variable to see if the content is ready. If it is, then it redirects to the
page with the content.
Before you redirect to the original progress page, you would kick off
the processing in another thread, and then at the end of that thread, you
would set the variable in the session that is checked on the progress page
that refreshes itself.
Hope this helps.