reports not reading datasets
Posted: Tue Sep 27, 2011 7:13 pm
I don't know why... the report is always reading the xml I configured in the designer, instead of reading the xml I configured in the asp.net code.
I've tried using many different combinations but nothing works.
Any ideas?
I've tried using many different combinations but nothing works.
Code: Select all
report.RegData(dataSet)
StiWebViewer1.Report = report
Code: Select all
report.RegData(dataSet)
report.Dictionary.Synchronize()
report.Render()
StiWebViewer1.Report = report
Code: Select all
report.Dictionary.DataSources.Clear()
report.RegData(dataSet)
report.Dictionary.Synchronize()
report.Render()
StiWebViewer1.Report = report