| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TrendChartPreview.aspx.cs"
- Inherits="CB.Admin.Plugins.TrendChartConfig.TrendChartPreview" %>
- <!DOCTYPE html>
- <html>
- <head>
- <title>
- <%=trendName %>_预览</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
- <script src="../../static/js/jquery.js" type="text/javascript"></script>
- <%--<link href="../../Static/css/zst.css" rel="stylesheet" type="text/css" />--%>
- <%-- <link href="http://www.55128.cn/css/zst.css" rel="stylesheet" type="text/css" /> --%>
- <link href="http://www.55128.cn/css/tb.css" rel="stylesheet" type="text/css" />
- <link href="../../Static/css/base.css" rel="stylesheet" type="text/css" />
- <link href="../../Static/css/charts.css" rel="stylesheet" type="text/css" />
- <script src="../../Static/js/jquery.js" type="text/javascript"></script>
- <script src="../../Static/js/function.js" type="text/javascript"></script>
- <script src="../../Static/js/trendChart.js" type="text/javascript"></script>
- <style type="text/css">
- #zstable thead, tfoot
- {
- background-color: #FFF094;
- height: 25px;
- font-size: 12px;
- font-family: "宋体";
- text-align: center;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="title">
- <div style="width: 450px; margin: 0 auto">
- <span>
- <%=trendName %>_预览</span> <span class="left"></span>
- </div>
- </div>
- </div>
- <div style="width: 1200px; margin: 0 auto">
- <div class="trend" id="trendBox" style="width: 1200px;">
- <table class="chartTable" id="chartBody" style="width: 100%">
- <thead>
- <%=hHead%>
- </thead>
- <tbody id="chartData">
- <%=sb%>
- </tbody>
- <tfoot>
- <%=hFoot%>
- </tfoot>
- </table>
- </div>
- </div>
- </body>
- </html>
|