WebReportView.aspx 1.2 KB

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