I have created my first Telerik Report and I can preview it with both regular and HTML. My question, is now how do I get that to the report viewer that is on my webform? I tried to follow the documentation but I am missing something.
my advice: look through the samples :-) but i understand, i had for 2 min the same problem and was confused too, when a looked through the samples (kind of weird [the generating of the startpage at least) and too complicated from my point of view)..
the fast way: 1. create a page (or a user control...) 2. place the reportviewer control on that page (by hand or drag'n'drop) 3. then give the report (which is a class) over to the reportviewer
i.e. in the page_load event:
Report1 r = new Report1(); //<- that's your report, don't forget namespace(s) r.DataSource = xxx //.... databind here or wherever you like and prefer ReportViewer1.Report = r;