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

Refresh Module

Rate me:
Please Sign up or sign in to vote.
4.68/5 (11 votes)
29 May 20075 min read 69.1K   1.1K   39  
How to make a browser's refresh manageable
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Main.master.cs" Inherits="Main" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">


<html>
<head runat="server">
    <title>Untitled Page</title>
    <link rel="STYLESHEET" type="text/css" href="styles.css">
</head>
<body marginwidth="0" marginheight="0" leftmargin="0" rightmargin="0" topmargin="0">
    <form id="form1" runat="server">
        <div id="header" style="float:left;"><img src="images/header.jpg" border="0"></div>
        <div id="underHeader" style="float:left;"></div>
        <div id="button" style="float:left;">
            <ul>
                  <li><a href="Default.aspx">Default</a></li>
                  <li><a href="Redirect.aspx">Auto Redirect</a></li>
                  <li><a href="SimpleNotification.aspx">Simple Notification</a></li>
                  <li><a href="SmartAttributeNotification.aspx">Smart Attribute Notification</a></li>
                  <li><a href="SmartIntrefaceNotification.aspx">Smart Intreface Notification</a></li>
            </ul>
        </div>
        <div style="float:left;" id="content">
		        <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
                </asp:contentplaceholder>
        </div>
         <div id="footer" style="float:left;"></div>
        </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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
Belarus Belarus
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions