Crystal Report is taking a lot of time while setting the datasource,
I have an asp.net web application targeting .net 3.5 using visual studio 2008, applications contains crystal reports ,Report Contains Dynamic Images,
I used custom collections to bind data to report objects, images and Datas are coming from oracle database
Eg:
/*
EmployeeInfo Class Contains Properties related to employee like FirstName,DOB,etc with an Image property its datatype is byte[] array
*/
List<EmployeeInfo> info=GetEmployeeDetails();
EmployeeReport report=new EmployeeReport();
report.SetDataSource(info);
above statement( report.SetDataSource(info) ) is taking a lot of time while accessing the report first time, if the application is idle for some time then again same issue is happending
Please give me a correct solutions