Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 21st, 2012  |  syntax: None  |  size: 2.80 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <%@ Page Language="C#" AutoEventWireup="true" Inherits="MainPage" Codebehind="MainPage.aspx.cs" %>
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head id="Head1" runat="server">
  7.     <title></title>
  8.     <style type="text/css">
  9.         #form1
  10.         {
  11.             height: 342px;
  12.         }
  13.     </style>
  14. </head>
  15. <body>
  16.     <form id="form1" runat="server">
  17.     <div style="top: 15px; left: 10px; position: absolute; height: 19px; width: 1078px">
  18.    
  19.         <asp:Label ID="lblTitle" runat="server" Text="Picture Set"
  20.             style="top: 0px; left: 0px; position: absolute; height: 19px; width: 77px"></asp:Label>
  21.        
  22.         <asp:Panel ID="Panel1" runat="server"
  23.             style="top: 24px; left: 0px; position: absolute; height: 144px; width: 176px; border-style: ridge">
  24.             <asp:Label ID="lblChooseOne" runat="server" Text="Choose One"
  25.             style="top: 0px; left: 0px; position: absolute; height: 19px; width: 77px"></asp:Label><br /><br />
  26.             <asp:RadioButton ID="rbBigSur" runat="server" Text="Big Sur" GroupName="Region"
  27.                 oncheckedchanged="rbBigSur_CheckedChanged" /><br />    
  28.             <asp:RadioButton ID="rbJoshuaTree" runat="server" Text="Joshua Tree" GroupName="Region"
  29.                 oncheckedchanged="rbJoshuaTree_CheckedChanged"/><br />
  30.             <asp:RadioButton ID="rbZion" runat="server" Text="Zion" GroupName="Region"
  31.                 oncheckedchanged="rbZion_CheckedChanged"/>
  32.         </asp:Panel>
  33.         <br />
  34.         <br />
  35.    
  36.     </div>
  37.    
  38.     <p>
  39.         &nbsp;</p>
  40.     <p>
  41.         &nbsp;</p>
  42.     <p>
  43.         <asp:Button ID="btnPrevious" runat="server" OnClick="btnPrevious_Click"
  44.             style="top: 208px; left: 16px; position: absolute; height: 26px; width: 71px"
  45.             Text="Previous" />
  46.         <asp:Button ID="btnNext" runat="server" OnClick="btnNext_Click"
  47.             style="top: 207px; left: 116px; position: absolute; height: 26px; width: 70px"
  48.             Text="Next" />
  49.     </p>
  50.    
  51.     <p>
  52.             <asp:Label ID="lblTravelDate" runat="server"
  53.     style="top: 271px; left: 15px; position: absolute; height: 19px; width: 134px; border-style: Solid; border-width: 1px; background-color: #99CCFF"
  54.     Text="date"></asp:Label>
  55.     </p>
  56.  
  57.     <asp:Label ID="lblError" runat="server"
  58.         style="top: 321px; left: 23px; position: absolute; height: 19px; width: 253px"
  59.         Visible="False"></asp:Label>
  60.     <asp:Label ID="lblCaption" runat="server"
  61.         style="top: 530px; left: 466px; position: absolute; height: 29px; width: 323px"
  62.         Text="description"></asp:Label>
  63.     <asp:Image ID="imgMain" runat="server"
  64.         style="top: 26px; left: 306px; position: absolute; height: 480px" />
  65.     </form>
  66. </body>
  67. </html>