GrapeCity ActiveReports for .NET 14.0J
LoadUrl プロパティ
使用例 

GrapeCity.ActiveReports.Document アセンブリ > GrapeCity.ActiveReports.Document 名前空間 > SectionDocument クラス : LoadUrl プロパティ
インターネットプロトコルを使用して非同期にドキュメントをダウンロードするためのURLを取得または設定します。
シンタックス
'宣言
 
Public Property LoadUrl As String
public string LoadUrl {get; set;}
解説

このプロパティにRDFファイルへのパスを表すURL文字列を設定します。
LoadURLプロパティを使用するには、IIS上でRDFファイルの保存先フォルダに対する匿名アクセスの設定を行う必要があります。

  1. IISの「規定のWebサイト」から、RDFファイルの保存先となっている仮想フォルダ(下記コードの場合"LoadUrlTest")のプロパティを開きます。
  2. 「ディレクトリセキュリティ」タブを選択し、「匿名アクセスおよび認証コントロール」の「編集」ボタンを押します。
  3. 「匿名アクセス」をチェックし、「認証済みアクセス」の「統合Windows認証」のチェックを外します。

使用例
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
参照

SectionDocument クラス
SectionDocument メンバ