Click here to Skip to main content
Licence 
First Posted 11 Jul 2005
Views 115,035
Bookmarked 72 times

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

By | 11 Jul 2005 | Article
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.

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.

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.

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.

<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.

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.

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

About the Author

Brandon Noffsinger

Web Developer

United States United States

Member

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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralWell done - great sample [modified] PinmemberTaner Riffat2:00 24 Apr '10  
GeneralDoesn't work in 3.0 Pinmembercsandvig7:44 16 Jun '08  
GeneralRe: Doesn't work in 3.0 [modified] PinmemberTaner Riffat1:58 24 Apr '10  
Generalhuge problem PinmemberGevorg5:03 30 Oct '07  
GeneralRe: huge problem [modified] PinmemberTaner Riffat2:02 24 Apr '10  
GeneralVery Nice PinmemberZeeshan Reyaz2:14 3 Oct '07  
QuestionHow do I get information back from the... Pinmembertravich19:26 5 Jan '07  
AnswerRe: How do I get information back from the... Pinmemberph0o3:16 4 Sep '07  
GeneralMy thread doesn't even appear launtched PinmemberAndre Dias23:06 1 Jan '07  
QuestionWhat if I don't want a wait page? [modified] PinmemberEnoughToBeDangerous4:27 23 Aug '06  
GeneralLosing Session Problem PinmemberMickAllen10:16 24 Mar '06  
GeneralHaving a problem with view state Pinmembersombra21310:44 7 Mar '06  
GeneralRe: Having a problem with view state Pinmembernamenotchosen5:37 12 Apr '06  
GeneralRe: Having a problem with view state PinmemberOzSoft Solutions15:47 25 Apr '06  
GeneralRe: Having a problem with view state Pinmemberoleano11:32 29 Mar '07  
GeneralProblem PinmemberBeetle5410:55 29 Aug '05  
GeneralRe: Problem PinmemberBrandon Noffsinger11:05 29 Aug '05  
GeneralLittle problem in vb PinmemberLumenm4:05 16 Aug '05  
GeneralRe: Little problem in vb PinmemberBrandon Noffsinger4:56 16 Aug '05  
GeneralRe: Little problem in vb PinmemberLumenm5:32 16 Aug '05  
GeneralRe: Little problem in vb PinmemberLumenm1:38 18 Aug '05  
Generalthreading error PinmemberLumenm23:06 18 Aug '05  
GeneralRe: threading error PinmemberBrandon Noffsinger5:40 19 Aug '05  
Hi Philippe,
 
Are you saying that you're starting another new thread in the Processing page? I guess I'm a little confused at what you're attempting to do. You shouldn't leave the Processing page until the thread on the submit page is complete. The Session variable after your long process should inform the processing page that the thread is complete. Therefore, you would only one new thread at a time.
 
I hope this makes sense. Thanks!
 
Brandon
GeneralRe: threading error PinmemberLumenm10:02 19 Aug '05  
AnswerRe: threading error PinmemberLumenm5:50 15 Sep '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 11 Jul 2005
Article Copyright 2005 by Brandon Noffsinger
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid