Introduction
When writing web pages, sometimes there is a need to auto refresh a page. Honestly, AJAX is a good solution most of the time. The problem comes when you don't want to load all the AJAX stuff to do something simple.
Background
I was doing an enhancement for a download site. They wanted to display a counter of how many times a file had been downloaded. So I started to investigate ways to auto refresh a web page to show the counter changing.
The Problem
In my download example, I use two pages. One page displays all the files that can be downloaded (download.aspx). When a link is clicked, I do a server transfer to a second page which uses the Response
object to deliver content and update the counter. The problem is that the server transfer keeps me from being able to refresh the counter on the download.aspx page.
The Solution
For the download example, I decided on a JavaScript solution. You can also refresh a page with a meta tag, so I will show those details as well.
Some Details on JavaScript Refresh
The JavaScript solution is pretty straightforward. On the PreRender
of the Repeater
, I add the JavaScript to the link button:
protected void rFiles_preRender(object sender, EventArgs e)
{
LinkButton lbtn = null;
foreach (RepeaterItem ri in rpFiles.Items)
{
if (ri.ItemType == ListItemType.Item ||
ri.ItemType == ListItemType.AlternatingItem)
{
lbtn = (LinkButton)ri.FindControl("lbtnFile");
if (lbtn != null)
{
lbtn.Attributes.Add("onclick", "setReloadTime(1)");
}
}
}
}
This allows the JavaScript to run before my postback which does the Server.Transfer
. The JavaScript function looks like this:
<script type="text/javascript" language="javascript">
var reloadTimer = null;
var sURL = unescape(window.location.pathname);
function setReloadTime(secs)
{
if (arguments.length == 1)
{
if (reloadTimer) clearTimeout(reloadTimer);
reloadTimer = setTimeout("setReloadTime()",
Math.ceil(parseFloat(secs) * 1000));
}
else
{
reloadTimer = null;
location.reload(true);
window.location.replace( sURL );
}
}
</script>
Here are some links that I used to help me with the JavaScript:
Some Details on the Meta Tag Refresh
The meta tag Refresh
has been around for a long time. Often, you see it when an old web page has moved to a new web page. You usually put the meta tag in the header of your page. The syntax is:
<meta http-equiv="Refresh" content="n;url"/>
where n
is the number of seconds, and url
is the URL to refresh to. If you leave the URL off, then the page refreshes itself.
In my sample code, the page updates the current time every two seconds. In the page load event, I have this code to set the meta tag:
if (this.Master.Page.Header != null)
{
HtmlHead hh = this.Master.Page.Header;
HtmlMeta hm = new HtmlMeta();
hm.Attributes.Add("http-equiv", "Refresh");
hm.Attributes.Add("content", "2");
hh.Controls.Add(hm);
}
Note: My sample web project has a master page, so setting the meta tag is a little different than if you didn't have a master page.
Conclusion
I found some interesting ways to auto refresh my web page. I hope you have learned something too. I know AJAX is better for partial page updates, but in this case, JavaScript worked fine and I didn't have to load AJAX on my web server.
I started my programmer career over 26 years ago doing COBOL and SAS on a MVS mainframe. It didn't take long for me to move into windows programming. I started my windows programming in Delphi (Pascal) with a Microsoft SQL server back end. I started working with vb.net when the beta 2 came out in 2001. After spending most of my programming life as a windows programmer I started to check out asp.net in 2004. I achieved my MCSD.net in April 2005. I have done a lot of MS SQL database stuff. I have a lot of experience with Window Service and Web services as well. I spent three years as a consultant programing in C#. I really enjoyed it and found the switch between vb.net and C# to be mostly syntax. In my current position I am programming in C# working on WPF and MSSql database stuff. Lately I have been using VS2019.
On a personal note I am a born again Christian, if anyone has any questions about what it means to have a right relationship with God or if you have questions about who Jesus Christ is, send me an e-mail. ben.kubicek[at]netzero[dot]com You need to replace the [at] with @ and [dot] with . for the email to work. My relationship with God gives purpose and meaning to my life.