Tag: SSRS
-
Using data from Entity Framework 2 to fill a 2010 local SSRS report in ASP.NET
When you design a local SSRS report you are forced to use a Dataset as part of the design process, however, this does not mean that you have to keep the dependancy on a dataset or even retain the dataset in your project once you have completed the design. Simply use code similar to the […]
-
Setting SSRS Report Parameters from ASP.NET C# Code
It is sometimes necessary to customise SSRS (SQL Server Reporting Services) reports at runtime and one way of achieving this is through the use of report parameters. One reason for doing this might be to customise the report title, column headers, currency, number formats and date formats based on the user’s language settings.