Is there any way I can create a report without using (.xsd) DataSet? I don't want to go through that way, I want to use SqlDataSource.
Okay, so this is what I did so far.
That's all, I don't know how to put them together.
Please help... I'm a newby...
MSDN has several pages with ReportViewer samples and walkthroughs:
You don't have to use a DataSet; the ReportViewer data sources collection will take anything that is a collection, such as a list of objects. Here's just a couple more pages with examples:
Whenever I use the ReportViewer in local processing mode I use it in conjunction with a data mapper tool like iBatis and simply feed an IList<Something>
of objects into it (wrapped in an ObjectDataSource).