123456789101112131415161718192021222324252627282930 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebReportView.aspx.cs" Inherits="PMS.WebUI.WebForms.WebReportView" %>
- <%@ Register Assembly="Stimulsoft.Report.Web, Version=2014.3.0.0, Culture=neutral, PublicKeyToken=ebe6666cba19647a"
- Namespace="Stimulsoft.Report.Web" TagPrefix="cc1" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>报表预览</title>
- <style type="text/css">
- /*body, form {
- margin: 0px;
- padding: 0px;
- }*/
- body {
- font-family: 宋体;
- }
- </style>
- </head>
- <body>
- <form runat="server">
- <cc1:StiWebViewer ID="StiWebViewer1" runat="server" Width="100%" Height="100%" GlobalizationFile="/reportlocation/zh-CHT.xml"
- RenderMode="AjaxWithCache" ShowDesignButton="True" Theme="Office2013" BackColor="#e8e8e8"
- ViewMode="OnePage" OnReportDesign="StiWebViewer1_ReportDesign" ToolBarBackColor="SlateBlue" />
- </form>
- </body>
- </html>
|