ReportViewer Control Paging Not working ...

  • Hi, I am using a report viewer control in a aspx webform in local processing mode and running IE 8.

    I can see from the pagecountmode that there are 5 pages and when the report exports to Excel all the data appears; however, when I try to page forward past page 1 the report goes stays on the first page. Any idea's why?

  • The following code behind resolved this for me:

    if (!Page.IsPostBack)

    {

    rv_UpsellCalc.LocalReport.ReportPath = "RapidFireUpsells.rdlc";

    rv_UpsellCalc.LocalReport.Refresh();

    rv_UpsellCalc.Visible = true;

    }

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply