article.aspx 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="article.aspx.cs" Inherits="CB.Wap.help.article" %>
  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. </head>
  30. <body onload="loaded()">
  31. <uc1:header ID="header1" runat="server" ColumnName="帮助详情" />
  32. <div class="help-notice">
  33. <%=info %>
  34. </div>
  35. <uc2:footer ID="footer1" runat="server" />
  36. </div>
  37. </body>
  38. </html>