I would like to customize asp.net web form reportviewer control. Particularly, I would like to override the default value in reportviewer control. How could this be done? I would like to have something like this for example.
I am not looking for something like this but the default asyncrendering method in reportviewer is public bool AsyncRendering and not public virtual bool AsyncRendering
<crv:ReportViewer runat="server" AsyncRendering="false" />
Instead, I am looking for something like this.
public class CustomReportViewer : ReportViewerControl
{
public override bool AsyncRendering
{
if(AsyncRendering.HasNoValue)
{
return false;
}
else
{
return true;
}
}
}
<crv:CustomReportViewer runat="server" />