ReportViewerWebPart.AsyncRendering Property

Definition

Gets or sets a value that indicates whether the report is rendered asynchronously from the rest of the Web page when the Web page is loaded.

public:
 property bool AsyncRendering { bool get(); void set(bool value); };
[Microsoft.SharePoint.WebPartPages.WebPartStorage(Microsoft.SharePoint.WebPartPages.Storage.Shared)]
public bool AsyncRendering { get; set; }
[<Microsoft.SharePoint.WebPartPages.WebPartStorage(Microsoft.SharePoint.WebPartPages.Storage.Shared)>]
member this.AsyncRendering : bool with get, set
Public Property AsyncRendering As Boolean

Property Value

true if the report should be rendered asynchronously; otherwise, false. The default is true.

Attributes
Microsoft.SharePoint.WebPartPages.WebPartStorageAttribute

Remarks

This property can be configured using the Asynchronous Rendering check box in the tool pane of the Web-based Web Part design user interface.

When AsyncRendering is set to true, the report is rendered asynchronously from the rest of the Web page. When AsyncRendering is set to false, the report is rendered synchronously with the rest of the Web page.

After the Web page is loaded, all actions on the Report Viewer Web Part cause asynchronous postbacks

Applies to