翻譯|使用教程|編輯:王香|2018-11-05 11:47:45.000|閱讀 427 次
概述:此示例項目演示了如何在ASPX頁面上添加帶滾動條的HTML5 Web查看器。
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
相關鏈接:
默認情況下,查看器將其自身大小調整為報表的大小。如果要顯示具有指定寬度和高度的查看器,則可能存在查看報表的整個頁面或頁面的問題。為此,它是一種帶滾動條的特殊模式。
要添加帶有滾動條的Web查看器,只需設置查看器組件的寬度和高度,并將特殊的ScrollbarsMode屬性設置為True即可。
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Web_Viewer_with_Scroll_Bars.Default" %>
<%@ Register assembly="Stimulsoft.Report.Web" namespace="Stimulsoft.Report.Web" tagprefix="cc1" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title>Web Viewer with Scroll Bars</title>
</head>
<body>
<form id="form1" runat="server">
<cc1:StiWebViewer ID="StiWebViewer1" runat="server"
Width="800px" Height="500px" ScrollbarsMode="true"
OnGetReport="StiWebViewer1_GetReport" />
</form>
</body>
</html>
要顯示報表,您應添加OnGetReport事件,您需要在該事件中加載報表,并在需要時注冊數據。
protected void StiWebViewer1_GetReport(object sender, Stimulsoft.Report.Web.StiReportDataEventArgs e)
{
string reportPath = Server.MapPath("Reports/SimpleList.mrt");
StiReport report = new StiReport();
report.Load(reportPath);
string dataPath = Server.MapPath("Data/Demo.xml");
DataSet data = new DataSet();
data.ReadXml(dataPath);
report.RegData(data);
e.Report = report;
}
示例代碼的結果如下圖所示:

購買Stimulsoft正版授權,請點擊“”喲!
本站文章除注明轉載外,均為本站原創或翻譯。歡迎任何形式的轉載,但請務必注明出處、不得修改原文相關鏈接,如果存在內容上的異議請郵件反饋至chenjj@ke049m.cn