Archive for the ‘SQL Reporting Services’ Category

Generating/Rendering a PDF from a sql reporting services report - CRM 4

sounds simple dosen’t it - my objective is to run an estimate report and render to PDF all from the click of a button as shown in the screenshot below:

Heres the code –
string oppID = Request.QueryString["oppID"].ToString();
[...]

Leave a Comment

SRS 2005: Add a Page No to each Page

Adding a Page Number to a Footer
To display a page number in the header or footer of a report, create a text box in the footer and add the following expression:
=Globals.PageNumber & ” of ” & Globals.TotalPages

Comments (1)