Question : working on rdl files through vb.net using bo

I have few rdl files located on the report server,
i need to develop a form with a report viewer and .net code to generate the report from rdl and display on report viewer

Answer : working on rdl files through vb.net using bo

Hi sivanna,

Yes, I can, but what can I tell you from experience is that you should give those links a read, if you want to work with SSRS in .NET.

Here it goes:
1:
2:
3:
4:
5:
6:
7:
 Dim StartDate As DateTime = Date.Now
        Dim EndDate As DateTime = Date.Now
        Dim p As New ReportParameter
        p.Name = "ParamName"
        p.Values.Add(StartDate.ToString)
        p.Values.Add(EndDate.ToString)
        ReportViewer.ServerReport.SetParameters(p)
Random Solutions  
 
programming4us programming4us