home *** CD-ROM | disk | FTP | other *** search
/ 66.142.0.142 / 66.142.0.142.tar / 66.142.0.142 / iPhone / eventdetail.aspx < prev    next >
Text File  |  2011-03-06  |  4KB  |  75 lines

  1. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="eventdetail.aspx.vb" Inherits="iPhoneNet_Default" %>
  2. <%
  3.     If Session("TFProduction_Status_UserID") = "" Then
  4.         Response.Redirect("login.aspx")
  5.     End If
  6. %>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8.  
  9. <html xmlns="http://www.w3.org/1999/xhtml">
  10. <head runat="server">
  11. <meta content="yes" name="apple-mobile-web-app-capable" />
  12. <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type" />
  13. <link href="thumbs/homescreen.png" rel="apple-touch-icon" />
  14. <meta content="minimum-scale=1.0, width=device-width, maximum-scale=0.6667, user-scalable=no" name="viewport" />
  15. <link href="css/style.css" rel="stylesheet" type="text/css" />
  16. <script src="javascript/functions.js" type="text/javascript"></script>
  17. <script type="text/javascript" src="javascript/cvi_busy_lib.js"></script>
  18. <script type="text/javascript" charset="utf-8">
  19.     var xval, tval, bval, rval, lval;
  20.     function block_viewport() {
  21.         xval = getBusyOverlay('viewport', { color: 'blue', opacity: 0.75, text: 'viewport: loading...', style: 'text-shadow: 0 0 3px black;font-weight:bold;font-size:16px;color:white' }, { color: '#ff0', size: 32, type: 'o' });
  22.         if (xval) {
  23.             var c = 0, t = 100;
  24.             xval.ntime = window.setInterval(function () {
  25.                 xval.settext('viewport: loading...' + c + '%'); c++;
  26.                 if (c > t) { window.clearInterval(xval.ntime); xval.remove(); }
  27.             }, 50);
  28.         }
  29.     }
  30. </script>
  31.     <title>PSS Mobile</title>
  32. </head>
  33. <body>
  34.  
  35. <div id="topbar">
  36.     <div id="leftnav" onclick="try {lval.remove(); lval='';}catch(e) {lval=getBusyOverlay(document.getElementById('vp'),{color:'black', opacity:0.5, text:'loading', style:'text-decoration:blink;font-weight:bold;font-size:12px;color:white'},{color:'#fff', size:128, type:'o'});}">
  37.         <a href="default.aspx"><img alt="home" src="images/home.png" /></a>
  38.         <a href="clockinout.aspx">Back</a>
  39.     </div>
  40.     <div id="title">
  41.         <%= session("TFProduction_Status_UserID") %>
  42.     </div>
  43.  
  44.     <div id="rightnav" onclick="try {lval.remove(); lval='';}catch(e) {lval=getBusyOverlay(document.getElementById('vp'),{color:'black', opacity:0.5, text:'loading', style:'text-decoration:blink;font-weight:bold;font-size:12px;color:white'},{color:'#fff', size:128, type:'o'});}">
  45. <%
  46.     If Session("tmpIO") <> "" Then
  47.         If Session("tmpIO") = "In" Then
  48.             Response.Write("<a href='punchclock.aspx?Dir=In&ID=" & Request.QueryString("ID") & "'><img alt='In' src='images/in.png' /></a>")
  49.         End If
  50.         If Session("tmpIO") = "Out" Then
  51.             Response.Write("<a href='punchclock.aspx?Dir=Out&ID=" & Request.QueryString("ID") & "'><img alt='Out' src='images/out.png' /></a>")
  52.         End If
  53.     End If
  54. %>
  55.     </div>
  56.  
  57. </div>
  58.  
  59. <div id="vp">
  60. <div id="edetail">
  61.     <span class="graytitle">Event Detail</span>
  62.     <ul class="pageitem">
  63.         <asp:Label ID="lblLabel" runat="server" Text="Label"></asp:Label>
  64.     </ul>
  65. </div>
  66.  
  67. <div id="footer" onclick="try {lval.remove(); lval='';}catch(e) {lval=getBusyOverlay(document.getElementById('vp'),{color:'black', opacity:0.5, text:'loading', style:'text-decoration:blink;font-weight:bold;font-size:12px;color:white'},{color:'#fff', size:128, type:'o'});}">
  68.     <img alt="Trinity Fellowship Church" src="images/tree.png" />    
  69.     <a href="http://YourTrinity.org">Trinity Fellowship Church</a>
  70. </div>
  71. </div>
  72.  
  73. </body>
  74. </html>
  75.