Hi everybody ,
Can somebody help me in the following problem.
I have converted ASP.NET 2003 project to ASP.NET 2005 it has converted all required files to 2005 format successfully , but it is not displaying crystal report in report viewer by throwing Exception "Unable to find the report in given manifest , rebuild the project and run again like this" . The code snippts is as below:
ReportClass oRpt =
new Reports.rptXpressFollowUp();oRpt.Load();
oRpt.SetDataSource(ds);
Session[
"oRpt"]=oRpt; rptViewer.ReportSource = oRpt;Also how i can create object of CrystalReport as i do in 2003 version like
new CrystalReport( ). In 2005 version .cs file of crystal report is missing. How can i overcome this problem.

working with crysal report in Visual Studio .NET 2005
Noah Falk - MSFT
Mike Smith-Lonergan