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

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