Home > BI Technical > Automatically refreshing your SQL Reporting Services reports with the AutoRefresh element

Automatically refreshing your SQL Reporting Services reports with the AutoRefresh element

In our current project we want report to refresh automatically every minute. After some googling i found a feature which make that possible:

If want your report to auto refresh every x seconds inside IE, take a look at the AutoRefresh RDL element: <AutoRefresh> is a child of <Report> and a peer or the <Body> element in your document. For example, if you want your report to autorefresh every 15 seconds, you’d add the AutoRefresh element to the RDL in your report like so:

<Report>

     <AutoRefresh>15</AutoRefresh>

     <Body>

      …

     </Body>

</Report>

Found at Russell Christopher’s  blog and works like a charm !

Categories: BI Technical Tags:
  1. April 9th, 2010 at 10:14 | #1

    Great! Very nice to meet smart advicer.
    Thanks for the useful code.
    :-)

  1. September 2nd, 2009 at 08:31 | #1