۰۹-شهریور-۱۳۸۷, ۱۲:۳۸:۴۶
من یک برنامه تحت وب در محیط visual studio 2008 با asp.net و c# دارم . که می خوام با استفاده از کریستال ریپورت گزارشگیری کنم من می خوام که reportsource مربوط به گزارش را با استفاده از stored procedure از جدول استخراج کنم و سپس این نتیجه را به عنوان reportsource به گزارش bind کنم کد من این است :
در بالای صفحه :
و در page_load این کد رو دارم :
وقتی کد رو اجرا می کنم روی سطر
error زیر را نشان می دهد:
The type or namespace name 'CrystalReportDemo' could not be found (are you missing a using directive or an assembly reference?)
در حالی که من یک ریپورت به این اسم در پروژه ام دارم . کسی می تونه کمکم کنه ؟
در بالای صفحه :
کد:
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.ReportSource;
using CrystalDecisions.Shared;
و در page_load این کد رو دارم :
کد:
[color=#FF0000]CrystalReportDemo report = new CrystalReportDemo();[/color]
report.Database.Tables["table1"].SetDataSource((DataTable)demoTable);
// Assign the report to the Crystal report viewer.
crystalReportViewer.ReportSource = report;
وقتی کد رو اجرا می کنم روی سطر
کد:
CrystalReportDemo report = new CrystalReportDemo();
The type or namespace name 'CrystalReportDemo' could not be found (are you missing a using directive or an assembly reference?)
در حالی که من یک ریپورت به این اسم در پروژه ام دارم . کسی می تونه کمکم کنه ؟