Click here to Skip to main content
15,885,546 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 69K   1.1K   39  
How to make a browser's refresh manageable
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SmartIntrefaceNotification.aspx.cs" Inherits="SmartIntrefaceNotification" MasterPageFile="~/Main.master" %>
<asp:Content ID="Content" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div id="title">
    <span>
        This page shows how to use the IRefreshWith&lt;T> generic interface for building a nice response
    </span>
</div>
<table id="inputFields" border="0">
    <tr>
        <td>
            First Name
        </td>
        <td>
            <input type="text" runat="server"/>
        </td>
    </tr>
    <tr>
        <td>
            Second Name
        </td>
        <td>
            <input type="text" runat="server"/>
        </td>
    </tr>
    <tr>
        <td>
            Email
        </td>
        <td>
            <input type="text" runat="server"/>
        </td>
    </tr>
    <tr>
        <td>
            State
        </td>
        <td>
            <input type="text" runat="server"/>
        </td>
    </tr>
    <tr>
        <td>
            Sity
        </td>
        <td>
            <input type="text" runat="server"/>
        </td>
    </tr>
</table>

<input type="submit" value="Send" id="submit"/>
</asp:Content>

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