article.aspx 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="article.aspx.cs" Inherits="CB.Web.Kjh.zjgz.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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <title><%=LotteryName %>中奖规则_<%=LotteryName %>玩法_中奖助手</title>
  9. <meta name="keywords" content="<%=LotteryName %>中奖规则,<%=LotteryName %>玩法" />
  10. <meta name="description" content="为你介绍<%=LotteryName %>中奖规则及奖金,<%=LotteryName %>玩法等内容,想获取更多<%=LotteryName %>玩法及中奖规则请关注开奖助手。" />
  11. <link type="text/css" rel="stylesheet" href="/static/css/base.css" />
  12. <link type="text/css" rel="stylesheet" href="/static/css/kjh.css" />
  13. <script type="text/javascript" src="/static/js/jquery.js"></script>
  14. <script type="text/javascript" src="/static/js/function.js"></script>
  15. <script language="javascript" type="text/javascript">
  16. var switchRule = function (id,type)
  17. {
  18. if (type == 'wfgz')
  19. {
  20. $("#wfgz_" + id).show();
  21. $("#zjgz_" + id).hide();
  22. }
  23. else
  24. {
  25. $("#wfgz_" + id).hide();
  26. $("#zjgz_" + id).show();
  27. }
  28. $("#rule_" + id).find("a").each(function ()
  29. {
  30. if ($(this).attr("class") == "bbline")
  31. $(this).attr("class","");
  32. else $(this).attr("class","bbline");
  33. });
  34. return false;
  35. }
  36. var switchL = function (id,e)
  37. {
  38. $("li[name=lMenu]").find("a[class!='']").each(function ()
  39. {
  40. $(this).attr("class","");
  41. });
  42. $(e).attr("class","brline");
  43. $("div[name=rulel]").hide();
  44. $("div[name=divl]").hide();
  45. $("#rule_" + id).show();
  46. $("#content_" + id).show();
  47. $("#spTitle").text($(e).text() + "玩法规则");
  48. return false;
  49. }
  50. </script>
  51. </head>
  52. <body>
  53. <uc1:Header runat="Server" ID="Header" />
  54. <div class="wrap">
  55. <div class="navbar">
  56. <span>当前位置:</span><a href="/">开奖助手</a> -
  57. <span id="spTitle">
  58. <%=PageTitle %></span>
  59. </div>
  60. </div>
  61. <div class="wrap">
  62. <div class="container">
  63. <div class="lotteryNav">
  64. <ul id="navTitle">
  65. <div class="navTitle">彩种分类</div>
  66. <%=MenuHtml %>
  67. </ul>
  68. </div>
  69. <div class="ruleInfo">
  70. <div class="ruleTitle">
  71. <ul>
  72. <%=SwitchHtml %>
  73. </ul>
  74. </div>
  75. <div id="lotPlay">
  76. <%=ContentHtml%>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. <uc2:Footer runat="Server" ID="Footer" />
  82. </body>
  83. </html>