list.aspx 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="list.aspx.cs" Inherits="CB.Web.tb.list" %>
  2. <%@ Register src="../header.ascx" tagname="header" tagprefix="uc1" %>
  3. <%@ Register src="../footer.ascx" tagname="footer" TagPrefix="uc2" %><%@ Register Src="/Controls/ToolMenu.ascx" TagName="ToolMenu" TagPrefix="uc3" %>
  4. <!doctype html>
  5. <html lang="zh-cn">
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <title><%=hTitle%></title>
  9. <meta name="description" content="<%=hDescription %>" />
  10. <meta name="keywords" content="<%=hKeywords %>" />
  11. <meta name="copyright" content="彩吧助手(www.55128.cn)" />
  12. <%=GetResourceFiles("base.css,charts.css,jquery.js,function.js")%>
  13. </head>
  14. <body>
  15. <uc1:header ID="header1" runat="server" />
  16. <div class="wrap">
  17. <div class="banner_ad" id="adg_42"></div>
  18. <script type="text/javascript">showadvert("/ggclass/42.js", "adg_42");</script>
  19. </div>
  20. <div class="wrap">
  21. <div class="subnav">
  22. <div class="lottery">
  23. <div class="lot-icon <%=lotLogoCsss %>"></div>
  24. <strong><%=lotName%></strong>
  25. </div>
  26. <div class="subnav-right">
  27. <%=trendMenu %>
  28. </div>
  29. </div>
  30. </div>
  31. <div class="wrap">
  32. <div class="navbar">
  33. <span>当前位置:</span><a href="/">首页</a> - <a href="/tb/">图表</a> - <%=navStr%>
  34. </div>
  35. </div>
  36. <div class="wrap">
  37. <div class="container">
  38. <div class="title"><h1><%=chartName%></h1></div>
  39. <div class="trend"><%=chartData %></div>
  40. </div>
  41. </div>
  42. <!--彩吧助手底部L区-->
  43. <div class="wrap">
  44. <div class="banner_ad" id="adg_50">
  45. <script type="text/javascript" src="http://www.55125.cn/ggclass/50.js"></script>
  46. </div>
  47. </div>
  48. <div class="wrap"><%=trendSmart%></div>
  49. <div class="wrap"><%=helpList%></div>
  50. <script type="text/javascript">
  51. showNavSelect();
  52. //帮助文章显示与隐藏
  53. $("#showAll").click(function () { this.style.display = "none"; $("#showPart").css("display", "inline"); $("#showBox").attr("style", "height:auto;"); });
  54. $("#showPart").click(function () { this.style.display = "none"; $("#showAll").css("display", "inline"); $("#showBox").attr("style", ""); });
  55. /*导航鼠标移动切换事件处理*/
  56. (function (tabMenu, tabContent) {
  57. var menu = $(tabMenu).children("ul").eq(0).children("li");
  58. if (1 >= menu.length) { return; }
  59. var list = $(tabContent).children("div");
  60. menu.each(function (i) {
  61. $(this).mousemove(function () {
  62. menu.attr("class", "");
  63. list.attr("class", "hide");
  64. menu.eq(i).attr("class", "act");
  65. list.eq(i).attr("class", "");
  66. });
  67. });
  68. })("#tab_t", "#tab_c");
  69. </script>
  70. <uc2:footer ID="footer1" runat="server" />
  71. </body>
  72. </html>