how to disable report automatic loading? This happens if I have default values for all parameters.
Thanks
|
how to disable report automatic loading? This happens if I have default values for all parameters. Thanks |
|||||||||
|
|
Set |
|||
|
|
|
I found a work-around at Microsoft connect. First, in the designer set Then, in code behind:
protected void ReportViewer1_SubmittingParameterValues(object sender, Microsoft.Reporting.WebForms.ReportParametersEventArgs e)
{
this.ReportViewer1.ShowReportBody = true;
}
|
||||
|
|