ActiveReports.Web Request technical support
Report Property
See Also 


Specifies the report to display to the client.

Syntax

Visual Basic (Declaration) 
Public Property Report As ActiveReport3
Visual Basic (Usage)Copy Code
Dim instance As WebViewer
Dim value As ActiveReport3
 
instance.Report = value
 
value = instance.Report
C# 
public ActiveReport3 Report {get; set;}

Remarks

If the control is being loaded in response to a client postback ( ) the property will not use the specified report. Instead the control uses a previously cached copy of the report's Document in the WebCache service to supply speedy responses to clients. To force the client to accept the new instance, call the ClearCachedReport property before setting this property.

See Also