Click here to Skip to main content
15,884,628 members
Articles / Web Development / HTML
Article

Use the Asynchronous Power of ASP.NET to Create a Simple, Reusable Page for Displaying a Processing Message

Rate me:
Please Sign up or sign in to vote.
3.42/5 (24 votes)
11 Jul 20053 min read 180.2K   2.1K   79   43
Use the asynchronous capabilaties of ASP.NET to inform your users when a long process is happening.

Sample Image - ProcessingMessage.gif

Introduction

Sometimes we may find it necessary for our users to run long processes when using the web as a user interface. Since patience is not a typical trait of web users, we run into the issue of needing to entertain them, prevent multiple clicks, or keep them from pulling their hair out while we're running time-consuming processes in the background. There are several tactics for doing this on the web, but I have found none of these to be as simple as employing .NET's asynchronous threading. I hope that you find this helpful.

Using the code

The relevant portion of the sample application included with this article consists of two C# Web Forms i.e., SubmitLongProcess.aspx, ProcessingMessage.aspx. SubmitLongProcess.aspx is used for starting the process and redirecting the user to ProcessingMessage.aspx. ProcessingMessage.aspx is the processing message page that is used to display a friendly message to the user while the long process is running in the background. Once the long process completes, ProcessingMessage.aspx redirects the user to a specified page.

SubmitLongProcess.aspx

As you can see in the code below, .NET makes firing off a new thread quite simple. Without fully qualifying the code, you'll need to include a using directive to the System.Web.Threading namespace.

C#
using System.Web.Threading

You can see that all I'm doing in the SubmitButton_Click event is initializing the session variable, initializing and starting the new thread, then redirecting the user to the ProcessingMessage.aspx page. Notice that I've included two querystring name/value pairs in the URL parameter of the Response.Redirect method. One is used to specify the redirect page after processing is complete and the other is used to inform ProcessingMessage.aspx what session variable to check.

C#
Response.Redirect("ProcessingMessage.aspx?redirectPage" + 
      "=SubmitLongProcess.aspx&ProcessSessionName=" + PROCESS_NAME);

The StartLongProcess() method runs in the background on a new thread while the user is redirected to the ProcessingMessage.aspx page. This method consists of two important lines of code. The first is used to mimic a long process by forcing the thread to sleep for a specified amount of time. Once the thread is done sleeping, the second line of code is used to set the session variable equal to true. Setting this variable equal to true informs the ProcessingMessage.aspx that the long process is complete.

C#
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Threading;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace AsynchronousProcessing
{
    public class ProcessingMessage : System.Web.UI.Page
    {
        protected System.Web.UI.WebControls.TextBox txtProcessLength;
        protected System.Web.UI.WebControls.Button SubmitButton;
        private const string PROCESS_NAME = "Process";

        private void Page_Load(object sender, System.EventArgs e)
        {

        }

        private void SubmitButton_Click(object sender, System.EventArgs e)
        {
            //Initialize Session Variable
            Session[PROCESS_NAME] = false;

            //Create and initialize new thread with the 
            //address of the StartLongProcess function
            Thread thread = new Thread(new ThreadStart(StartLongProcess));

            //Start thread
            thread.Start();

            //Pass redirect page and session var name 
            //to the process wait (interum) page
            Response.Redirect("ProcessingMessage.aspx?" + 
              "redirectPage=SubmitLongProcess.aspx&ProcessSessionName=" 
              + PROCESS_NAME);
        }

        private void StartLongProcess()
        {
            //Replace the following line of code with your long process
            Thread.Sleep(Convert.ToInt32(this.txtProcessLength.Text)* 1000);

            //Set session variable equal to true when process completes
            Session[PROCESS_NAME] = true;
        }
    }
}

ProcessingMessage.aspx

The ProcessingMessage.aspx page is used to inform the user how long he/she has waited and redirects the user to the specified page when the long process is complete. With the source code, I've included a simple yet effective animated gif called Processing.gif that's used to simulate a process occurring in the background. I've also forced the page to refresh every second by adding the equiv-refresh meta tag to the aspx portion of the Web form.

HTML
<meta http-equiv="refresh" content="1">

In the Page_Load method, I am setting a session variable called Session["ProcessTime"]. This variable is used to keep track of how long the process has been running and display this to the user. Every time the page refreshes, Session["ProcessTime"] is incremented by 1.

C#
Session["ProcessTime"] = Convert.ToInt32(Session["ProcessTime"]) + 1;

You'll also notice that I'm checking the state of the session variable that's waiting to be set on the triggering page. Once this variable equals true, I set both the Session[processSessionName] and Session["ProcessTime"] equal to null and redirect the user to the page specified in the querystring. I set the session variables equal to null in case the user performs another long process within the same session.

C#
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace AsynchronousProcessing
{
    public class WebForm1 : System.Web.UI.Page
    {
        protected System.Web.UI.WebControls.Label StatusMessage;
    
        private void Page_Load(object sender, System.EventArgs e)
        {
            string redirectPage = Request.QueryString["redirectPage"];
            string processSessionName = Request.QueryString["ProcessSessionName"];
            if (Session["ProcessTime"] == null)
            {
                StatusMessage.Text = "Process has been running for 0 seconds";
                Session["ProcessTime"] = 0;
            }
            else
            {
                Session["ProcessTime"] = Convert.ToInt32(Session["ProcessTime"]) + 1;
                StatusMessage.Text = "Process has been running for " + 
                        Session["ProcessTime"].ToString() + " seconds";
            }

            if ((bool)Session[processSessionName] == true)
            {
                Session[processSessionName] = null;
                Session["ProcessTime"] = null;
                Response.Redirect(redirectPage);
            }
        }
    }
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I don't really have much to say at this point. I promise to update this if I come up with another article to submit.

Comments and Discussions

 
GeneralRe: Little problem in vb Pin
Lumenm18-Aug-05 1:38
Lumenm18-Aug-05 1:38 
Generalthreading error Pin
Lumenm18-Aug-05 23:06
Lumenm18-Aug-05 23:06 
GeneralRe: threading error Pin
Brandon Noffsinger19-Aug-05 5:40
Brandon Noffsinger19-Aug-05 5:40 
GeneralRe: threading error Pin
Lumenm19-Aug-05 10:02
Lumenm19-Aug-05 10:02 
AnswerRe: threading error Pin
Lumenm15-Sep-05 5:50
Lumenm15-Sep-05 5:50 
GeneralRe: threading error Pin
Brandon Noffsinger15-Sep-05 5:58
Brandon Noffsinger15-Sep-05 5:58 
GeneralRe: threading error Pin
Lumenm15-Sep-05 22:01
Lumenm15-Sep-05 22:01 
GeneralRe: threading error Pin
Lumenm16-Sep-05 1:54
Lumenm16-Sep-05 1:54 
AnswerRe: threading error Pin
Lumenm16-Sep-05 5:46
Lumenm16-Sep-05 5:46 
GeneralRe: threading error Pin
Brandon Noffsinger16-Sep-05 5:58
Brandon Noffsinger16-Sep-05 5:58 
GeneralPERFECT Pin
dclark10-Aug-05 16:09
dclark10-Aug-05 16:09 
GeneralDoen not work with SessionState mode Pin
vickycao31-Jul-05 15:11
vickycao31-Jul-05 15:11 
GeneralRe: Doen not work with SessionState mode Pin
Brandon Noffsinger1-Aug-05 8:08
Brandon Noffsinger1-Aug-05 8:08 
GeneralRe: Doen not work with SessionState mode Pin
vickycao1-Aug-05 15:26
vickycao1-Aug-05 15:26 
GeneralRe: Doen not work with SessionState mode Pin
Brandon Noffsinger2-Aug-05 9:32
Brandon Noffsinger2-Aug-05 9:32 
GeneralRe: Doen not work with SessionState mode Pin
vickycao2-Aug-05 15:20
vickycao2-Aug-05 15:20 
GeneralRe: Doen not work with SessionState mode Pin
Brandon Noffsinger3-Aug-05 8:20
Brandon Noffsinger3-Aug-05 8:20 
GeneralRe: Doen not work with SessionState mode Pin
vickycao3-Aug-05 23:29
vickycao3-Aug-05 23:29 
GeneralRe: Doen not work with SessionState mode Pin
Brandon Noffsinger4-Aug-05 5:24
Brandon Noffsinger4-Aug-05 5:24 
GeneralDarn it Pin
Blairs12-Jul-05 5:54
Blairs12-Jul-05 5:54 
GeneralRe: Darn it Pin
Brandon Noffsinger13-Jul-05 8:28
Brandon Noffsinger13-Jul-05 8:28 
GeneralRe: Darn it Pin
Blairs13-Jul-05 8:33
Blairs13-Jul-05 8:33 
GeneralThanks ! Pin
Trance Junkie12-Jul-05 2:46
Trance Junkie12-Jul-05 2:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.