function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RhondaBRhondaB 

ASP.net pages load slowly

I have a link on the Opportunites section that opens an ASP.net page on our side. It is taking about 15 seconds to load. Is there a way to display a "Loading..." message so the user knows that something is happening and that the page is not locked?

Thanks,

Rhonda
J_HinderJ_Hinder
I think you can do this with a Response.flush and Response.buffer, but have not had to for quite a while and can't seem to remember the right syntax, but it's probably something like:


//Put something in the buffer and display it first
Response.buffer = true;
Response.write("Loading...");
Response.flush();

//Go on with the rest of your code