Occasionally when writing ASP.NET pages you may find that the Page_Load subroutine will take a long time to complete and therefore the final page will not be viewable by the end user until the processing has completed. It is possible to send some HTML to render before the Page_Load subroutine has finished using the Response.Write and Response.Flush commands.
Continue reading “How to display loading text whilst processing” »

