In the Session.Start event handler (of Global.asax/Global.cs) is there a way to display a simple "Loading..." message using code something like this:
Response.Clear();
Response.Buffer = true;
Response.Write("Loading . . .");
Robert
Go to the complete details ...