vote up 0 vote down star

In Microsoft Reporting Services 2005, I would like my report to refresh every time the value of a sql parameter is changed by the viewer.

How can that be done ? More generally, how can I force refresh on certain actions (typically, a click on a button ) ?

flag

By 'viewer' do you mean the Report Viewer control, or do you mean someone actually viewing the report? – adolf garlic May 14 at 6:25
I mean a real person. – madewulf May 14 at 15:00

1 Answer

vote up 1 vote down

I find that the best way to refresh a report is to do the following:

  1. Do a ReportViewer.Reset()
  2. Set the ReportDefinition on the ReportViewer control again.
  3. Do a ReportViewer.RefreshReport()

You could write the above logic into a function, then call the function whenever a Event occurs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.