Właściwość ReportViewer.AsyncRendering —
Gets or sets a Boolean value that indicates whether the report is rendered asynchronously from the rest of the Web page when the Web page is being loaded.
Przestrzeń nazw: Microsoft.Reporting.WebForms
Zestaw: Microsoft.ReportViewer.WebForms (w Microsoft.ReportViewer.WebForms.dll)
Składnia
'Deklaracja
<WebBrowsableAttribute(True)> _
Public Property AsyncRendering As Boolean
[WebBrowsableAttribute(true)]
public bool AsyncRendering { get; set; }
[WebBrowsableAttribute(true)]
public:
property bool AsyncRendering {
bool get ();
void set (bool value);
}
[<WebBrowsableAttribute(true)>]
member AsyncRendering : bool with get, set
function get AsyncRendering () : boolean
function set AsyncRendering (value : boolean)
Wartość właściwości
Typ: Boolean
true if the report is rendered asynchronously; otherwise, false. The default is true.
Uwagi
After the report is rendered on page load, this property no longer determines the report rendering behavior. By default, all subsequent report renderings are accomplished with AJAX partial-page updates through asynchronous postbacks, and changing this property has no effect. For more information on partial-page updates and asynchronous postbacks, see Partial-Page Rendering Overview.
To control the asynchronous postback behavior, use the InteractivityPostBackMode property.