12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="tool_3dlssdjt.aspx.cs" Inherits="CB.Wap.column.tool_3dlssdjt" %>
- <%@ Register TagPrefix="uc2" TagName="footer" Src="~/footer.ascx" %>
- <%@ Register TagPrefix="uc1" TagName="header" Src="~/header.ascx" %>
- <!DOCTYPE html >
- <html >
- <head >
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, minimum-scale=1.0, user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <!-- 允许全屏浏览-->
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <!--指定的iphone中safari顶端的状态条的样式;-->
- <meta name="format-detection" content="telephone=no">
- <!--强制要求手机竖屏显示-->
- <meta name="MobileOptimized" content="320" />
- <meta name="screen-orientation" content="portrait">
- <!--告诉设备忽略将页面中的数字识别为电话号码;-->
- <!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
- <meta http-equiv="cleartype" content="on">
- <meta content="telephone=no" name="format-detection" />
- <!-- tianlong add -->
- <title><%=pageTitle%></title>
- <meta name="description" content="<%=pageDescription %>" />
- <meta name="keywords" content="<%=pageKeyWords %>" />
- <link href="/static/css/base.css" rel="stylesheet" />
- <link href="/static/css/specail.css" rel="stylesheet" />
- <script type="text/javascript" src="/static/js/1.6-min-jquery.js"></script>
- <script type="text/javascript" src="/static/js/wap128.js"></script>
- </head>
- <body>
- <uc1:header id="header1" runat="server" />
- <div class="wrap">
- <div class="subnav">
- <%=columnNav%>
- </div>
- </div>
- <div class="his-sjh">
- <div class="hisjh">
- <table>
- <thead>
- <tr>
- <th width="110">
- 期号
- </th>
- <th width="138">
- 日期
- </th>
- <th width="170">
- 试机号
- </th>
- <th width="90">
- 和值
- </th>
- <th width="170">
- 开奖号
- </th>
- <th width="90">
- 和值
- </th>
- <th width="90">
- 试中
- </th>
- </tr>
- </thead>
- <tbody>
- <%=others.ToString() %>
- </tbody>
- </table>
- </div>
- </div>
- <script type="text/javascript">
- $('.his-sjh').find('tr:even').attr('class','bg-grey');
- $('.hisjh').find('tr').find('td:eq(2)').attr('class','wred');
- $('.hisjh').find('tr').find('td:eq(4)').attr('class','wblue');
- </script>
- <uc2:footer ID="footer1" runat="server" NoFooter="false" />
- </body>
- </html>
|