|
|
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="PostBackOnTimeOut.aspx.cs" Inherits="PostBackOnTimeOut" Title="PostBack On TimeOut" %>
<%@ Register Namespace="CodeControls" TagPrefix="cc" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<h2>PostBack On TimeOut</h2>
<div>
<table style="color:Green;font-weight:bold">
<tr>
<td colspan="2" style="text-decoration:underline">Timer Settings</td>
</tr>
<tr>
<td align="right"> AutoStart:</td><td><asp:Label ID="lbAutoStart" runat="server"/></td>
</tr>
<tr>
<td align="right"> PostBack On TimeOut:</td><td><asp:Label ID="lbPostBack" runat="server"/></td>
</tr>
<tr>
<td align="right"> Disable Mouse Right Click: </td><td><asp:Label ID="lbMouseClick" runat="server"/></td>
</tr>
<tr>
<td align="right"> Sync Clock With Server: </td><td><asp:Label ID="lbSyncTimer" runat="server"/></td>
</tr>
</table>
<br />
<br />
<cc:Timer ID="Timer1" runat="server" DisableRightClick="True" DoPostBackOnTimeOut="True" Font-Bold="True"
Font-Names="Verdana" Font-Size="48px" ForeColor="#FF8000" Interval="5" IsAutoStart="True"
OnIntervalReached="Timer1_IntervalReached" OnTimeOutOccurred="Timer1_TimeOutOccurred"
ServerSideTimeSynchronize="False" TimeOut="24" ></cc:Timer>
</div>
</asp:Content>
|
By viewing downloads associated with this article you agree to the Terms of use 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.