I've tried using different rendering modes with no success.
Code: Select all
Code: Select all
StiReport report = new StiReport();
report.Load(Server.UrlDecode(filename));
if (report != null) {
StiSqlDatabase db = (StiSqlDatabase)report.Dictionary.Databases[0];
db.ConnectionString = dbConnector.GetConnectionString();
report.Dictionary.Databases.Clear();
report.Dictionary.Databases.Add(db);
webViewer.Report = report;
UpdatePanelReport.Update();
[/code]
Thanks!