TrendChartPreview.aspx 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TrendChartPreview.aspx.cs"
  2. Inherits="CB.Admin.Plugins.TrendChartConfig.TrendChartPreview" %>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>
  7. <%=trendName %>_预览</title>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
  10. <script src="../../static/js/jquery.js" type="text/javascript"></script>
  11. <%--<link href="../../Static/css/zst.css" rel="stylesheet" type="text/css" />--%>
  12. <%-- <link href="http://www.55128.cn/css/zst.css" rel="stylesheet" type="text/css" /> --%>
  13. <link href="http://www.55128.cn/css/tb.css" rel="stylesheet" type="text/css" />
  14. <link href="../../Static/css/base.css" rel="stylesheet" type="text/css" />
  15. <link href="../../Static/css/charts.css" rel="stylesheet" type="text/css" />
  16. <script src="../../Static/js/jquery.js" type="text/javascript"></script>
  17. <script src="../../Static/js/function.js" type="text/javascript"></script>
  18. <script src="../../Static/js/trendChart.js" type="text/javascript"></script>
  19. <style type="text/css">
  20. #zstable thead, tfoot
  21. {
  22. background-color: #FFF094;
  23. height: 25px;
  24. font-size: 12px;
  25. font-family: "宋体";
  26. text-align: center;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class="box">
  32. <div class="title">
  33. <div style="width: 450px; margin: 0 auto">
  34. <span>
  35. <%=trendName %>_预览</span> <span class="left"></span>
  36. </div>
  37. </div>
  38. </div>
  39. <div style="width: 1200px; margin: 0 auto">
  40. <div class="trend" id="trendBox" style="width: 1200px;">
  41. <table class="chartTable" id="chartBody" style="width: 100%">
  42. <thead>
  43. <%=hHead%>
  44. </thead>
  45. <tbody id="chartData">
  46. <%=sb%>
  47. </tbody>
  48. <tfoot>
  49. <%=hFoot%>
  50. </tfoot>
  51. </table>
  52. </div>
  53. </div>
  54. </body>
  55. </html>