connection string
Posted: Tue Feb 19, 2008 1:01 am
How can I pass Connection String to report from code in ASP.Net
thanks in advance
thanks in advance
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
report.Compile();
(report.CompiledReport.Dictionary.Databases["NameofTheConnectionInDictionary"] as StiSqlDatabase).ConnectionString = "my connection string";
report.Render(false);
stiWebViewer1.Report = report;