Hi,
Problem: I have an ASP page that executes a SELECT query then displays all records in a table. The pages takes a few seconds to load, with no indication that work is being done.
I am looking at optimizing the database query, please don't suggest that. I am already on it. Additionally, I want to evaluate a server-side solution.
Question: In ASP classic, How can I ...
a) Perform the select statement in one page (I would display an animated "please wait" message here), then call another page to move through the records and display them
b) Execute the query and build the page in the background, while I display an animated "please wait" message. I would have to detect when the page is done then simply redirect to it.
If these approaches are too far fetched, then what would you recommend.
I dont want a client-side solution because I dont want to rely on JavaScript being enabled.
Thanks in advance.
Problem: I have an ASP page that executes a SELECT query then displays all records in a table. The pages takes a few seconds to load, with no indication that work is being done.
I am looking at optimizing the database query, please don't suggest that. I am already on it. Additionally, I want to evaluate a server-side solution.
Question: In ASP classic, How can I ...
a) Perform the select statement in one page (I would display an animated "please wait" message here), then call another page to move through the records and display them
b) Execute the query and build the page in the background, while I display an animated "please wait" message. I would have to detect when the page is done then simply redirect to it.
If these approaches are too far fetched, then what would you recommend.
I dont want a client-side solution because I dont want to rely on JavaScript being enabled.
Thanks in advance.