GrapeCity.ActiveReports.Document.v9 アセンブリ > GrapeCity.ActiveReports.Document 名前空間 > SectionDocument クラス : LoadUrl プロパティ |
このプロパティにRDFファイルへのパスを表すURL文字列を設定します。
LoadURLプロパティを使用するには、IIS上でRDFファイルの保存先フォルダに対する匿名アクセスの設定を行う必要があります。
private void Form1_Load(object sender, EventArgs e) { SectionReport1 rpt = new SectionReport1(); rpt.Run(); rpt.Document.Save(@"C:\Inetpub\wwwroot\LoadURLTest\report_Normal.rdf", GrapeCity.ActiveReports.Document.Section.RdfFormat.ARNet, GrapeCity.ActiveReports.Document.Section.SaveOptions.Normal); this.viewer1.Document.LoadUrl = "http://localhost/Loadurltest/report_Normal.rdf"; }
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim rpt As New SectionReport1 rpt.Run() rpt.Document.Save("C:\Inetpub\wwwroot\LoadURLTest\report_Normal.rdf", GrapeCity.ActiveReports.Document.Section.RdfFormat.ARNet, GrapeCity.ActiveReports.Document.Section.SaveOptions.Normal) Me.Viewer1.Document.LoadUrl = "http://localhost/Loadurltest/report_Normal.rdf" End