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 !

One Reply to “Automatically refreshing your SQL Reporting Services reports with the AutoRefresh element”

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.