home *** CD-ROM | disk | FTP | other *** search
/ 66.142.0.142 / 66.142.0.142.tar / 66.142.0.142 / iPhone / schedule2.aspx < prev    next >
Text File  |  2012-03-03  |  3KB  |  60 lines

  1. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="schedule2.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.     </div>
  39.     <div id="title">
  40.         <%= session("TFProduction_Status_UserID") %>
  41.     </div>
  42. </div>
  43.  
  44. <div id="vp">
  45. <div id="content">
  46.     <span class="redtitle"><font color="red"></font>You have the following un-confirmed shifts;</span>
  47.     <ul class="pageitem" 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'});}">
  48.         <asp:Label ID="lblLabel" runat="server"></asp:Label>
  49.     </ul>
  50. </div>
  51.  
  52. <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'});}">
  53.     <img alt="Trinity Fellowship Church" src="images/tree.png" />    
  54.     <a href="http://YourTrinity.org">Trinity Fellowship Church</a>
  55. </div>
  56. </div>
  57.  
  58. </body>
  59. </html>
  60.