Click here to Skip to main content
15,888,351 members
Articles / Web Development / ASP.NET

Auto postback in ASP.NET

Rate me:
Please Sign up or sign in to vote.
3.43/5 (19 votes)
20 Jul 2009CPOL2 min read 208.8K   46   34
How to do auto postback in ASP.NET.

Introduction

After updating this article on 06 July 2009, I see that there is someone who thinks that I don’t know that there are other solutions to this task today. As Stephen Inglish pointed out in a message, one of them is to use the AJAX timer module, and as fare as I know, there may be other solutions to.

Back in 2005, when I first wrote this article using Visual Studio 2003, I was not able to find a solution for automatic postback at a regular time schedule. After searching for a time, without finding anything, I wrote this JavaScript and shared it with the CodeProject community.

After the article was published in 2005, there have been some comments from isikiss and obed21, members of the community, which have improved the code. The reason why I’m updating this article, even though it is outdated, is that there are still people who read this article and I think they deserve an updated code.

Using the code

Start a new ASP.NET Web Application. Call it whatever you want, maybe TimerTest, and do the following:

In Design mode, click on the Source button and paste this JavaScript inside the head tag.

JavaScript
<script language="JavaScript" type="text/javascript">
<!--
// Script to generate an automatic postBack to the server
var secs
var timerID = null
var timerRunning = false
var delay = 1000
function InitializeTimer()
{
    // Set the length of the timer,
     // in seconds. Your choise
    secs = 5

    StopTheClock()
    StartTheTimer()
}
function StopTheClock()
{
    if(timerRunning)
        clearTimeout(timerID)
    timerRunning = false
}
function StartTheTimer()
{
    if (secs==0)
    {
        StopTheClock()

        //Generate a Postback to the server
        document.forms[0].submit()  
     
    }
    else
    {
        secs = secs - 1
        timerRunning = true
        timerID = self.setTimeout("StartTheTimer()", delay)
    }
}
//-->
</script>

Your Body have to look something like this. The most important thing is to add onload="InitializeTimer()" inside the <body> tag.

HTML
<body onload="InitializeTimer()">
<form id="form1" runat="server">
 <div>
       The time is:   <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>

In the code-behind, you can paste in this just to see something happening.

VB
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) _
          Handles Me.Load

  'This is just to se something happening
  Label1.Text = Now.ToString("hh:mm:ss")

  'Put the code to execute here.
End Sub

Leave it like this. The only thing it’s doing is that it posts back to the server, and in this example, it’s refreshing the time every 5 seconds.

And that’s all.

History

  • 06 July 2009: The article was made when I was using Visual studio 2003. There have also been some comments by isikiss and obed21, members of the community, that have improved the code. I have implemented the improvements they have suggested and used Visual Studio 2008 to test it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Norway Norway
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralXmlHttpRequest Pin
Aquilax15-Dec-05 6:20
Aquilax15-Dec-05 6:20 
Generalgood work but Pin
Ahmed Galal3-Dec-05 9:26
Ahmed Galal3-Dec-05 9:26 
GeneralRe: good work but Pin
Sigurd Johansen4-Dec-05 7:28
Sigurd Johansen4-Dec-05 7:28 
GeneralRe: good work but Pin
Sigurd Johansen4-Dec-05 7:42
Sigurd Johansen4-Dec-05 7:42 
GeneralRe: good work but Pin
Erling Paulsen6-Dec-05 20:17
Erling Paulsen6-Dec-05 20:17 
GeneralRe: good work but Pin
Sigurd Johansen7-Dec-05 8:50
Sigurd Johansen7-Dec-05 8:50 
GeneralRe: good work but Pin
sudhircn8318-Aug-08 23:38
sudhircn8318-Aug-08 23:38 
GeneralRe: good work but Pin
Sigurd Johansen19-Aug-08 9:52
Sigurd Johansen19-Aug-08 9:52 
GeneralRe: good work but Pin
sudhircn8320-Aug-08 20:28
sudhircn8320-Aug-08 20:28 

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.