1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="article.aspx.cs" Inherits="CB.Wap.help.article" %>
- <%@ Register src="/header.ascx" tagname="header" tagprefix="uc1" %>
- <%@ Register src="/footer.ascx" tagname="footer" TagPrefix="uc2" %>
- <!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>帮助详情</title>
- <meta name="description" content="彩吧助手帮助系统,提供彩票术语、版本更新说明等。" />
- <meta name="keywords" content="彩票术语,更新说明,彩票助手" />
- <link href="../static/css/base.css" rel="stylesheet"/>
- <link href="../static/css/notice.css" rel="stylesheet"/>
- <script type="text/javascript" src="../static/js/1.6-min-jquery.js"></script>
-
- </head>
- <body onload="loaded()">
- <uc1:header ID="header1" runat="server" ColumnName="帮助详情" />
-
- <div class="help-notice">
- <%=info %>
- </div>
-
-
- <uc2:footer ID="footer1" runat="server" />
- </div>
- </body>
- </html>
|