hi,
i'm applying the best practice approach for the telerik reporting in which they being put in separate c# project. i could access them from the web application be getting assembly info...like this:
but after publishing the report not showing so can you provide full demo for best way for applying that!
i'm applying the best practice approach for the telerik reporting in which they being put in separate c# project. i could access them from the web application be getting assembly info...like this:
var reportAssembly = AppDomain.CurrentDomain
.GetAssemblies()
.Where(x => x.GetName().Name == REPORT_NAMESPACE).FirstOrDefault();
Type reportType = reportAssembly.GetType(rptInfo.ReportClassName);
var report = (Report)Activator.CreateInstance(reportType);
report.DataSource = results;
but after publishing the report not showing so can you provide full demo for best way for applying that!