index.aspx 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="index.aspx.cs" Inherits="CB.Wap.help.index" %>
  2. <%@ Register src="/header.ascx" tagname="header" tagprefix="uc1" %>
  3. <%@ Register src="/footer.ascx" tagname="footer" TagPrefix="uc2" %>
  4. <!doctype html>
  5. <html>
  6. <head>
  7. <meta charset="utf-8">
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, minimum-scale=1.0, user-scalable=no">
  10. <meta name="apple-mobile-web-app-capable" content="yes">
  11. <!-- 允许全屏浏览-->
  12. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  13. <!--指定的iphone中safari顶端的状态条的样式;-->
  14. <meta name="format-detection" content="telephone=no">
  15. <!--强制要求手机竖屏显示-->
  16. <meta name="MobileOptimized" content="320" />
  17. <meta name="screen-orientation" content="portrait">
  18. <!--告诉设备忽略将页面中的数字识别为电话号码;-->
  19. <!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
  20. <meta http-equiv="cleartype" content="on">
  21. <meta content="telephone=no" name="format-detection" />
  22. <!-- tianlong add -->
  23. <title>帮助首页</title>
  24. <meta name="description" content="彩吧助手帮助系统,提供彩票术语、版本更新说明等。" />
  25. <meta name="keywords" content="彩票术语,更新说明,彩票助手" />
  26. <link href="../static/css/base.css" rel="stylesheet"/>
  27. <link href="../static/css/notice.css" rel="stylesheet"/>
  28. <script type="text/javascript" src="../static/js/1.6-min-jquery.js"></script>
  29. <script type="text/javascript" src="../static/js/wap128.js"></script>
  30. </head>
  31. <body>
  32. <uc1:header ID="header1" runat="server" ColumnName="帮助首页" />
  33. <nav><ul class="tab-munes"><li class="select"><a href="/help/index.aspx">帮助</a></li><li><a href="/notice/index.aspx">公告</a></li></ul></nav>
  34. <div class="help-notice">
  35. <ul>
  36. <%=helps %>
  37. </ul>
  38. </div>
  39. <uc2:footer ID="footer1" runat="server" />
  40. </body>
  41. </html>