home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 September / PCWorld_2003-09_cd.bin / Software / Vyzkuste / webmatrix / WebMatrix.msi / Data1.cab / _6361C3CF2CD84FDFA3D8EBA8EBDA30EC < prev    next >
Encoding:
ASP.NET Web Form  |  2003-04-28  |  844 b   |  29 lines

  1. <%@ Page language="C#"%%ClassName, ClassName="{0}"%% %>
  2. <%@ OutputCache Duration="10" VaryByParam="none"%>
  3.  
  4. <script runat="server">
  5.  
  6.     void Page_Load(Object sender, EventArgs e) {
  7.  
  8.         TimestampCreated.Text = DateTime.Now.ToString("r");
  9.         TimestampExpires.Text = DateTime.Now.AddSeconds(10).ToString("r");
  10.     }
  11.  
  12. </script>
  13.  
  14. <html>
  15.     <body style="font-family:arial">
  16.         <h2>
  17.             Output caching for 10 seconds...
  18.         </h2>
  19.         <hr size="1">
  20.         <p>
  21.             Output Cache created:
  22.             <asp:Label id="TimestampCreated" ForeColor="red" Font-Bold="true" runat="server"></asp:Label>
  23.             <br>
  24.             Output Cache expires:
  25.             <asp:Label id="TimestampExpires" ForeColor="red" Font-Bold="true" runat="server"></asp:Label>
  26.         </p>
  27.     </body>
  28. </html>
  29.