ReportDataSource rds =new ReportDataSource("Orders", ds.Tables[0]);
Intell 中没有显示“ReportDataSource”关键字有什么问题?
ReportDataSource rds =new ReportDataSource("Orders", ds.Tables[0]);
Intell 中没有显示“ReportDataSource”关键字有什么问题?
您必须导入适用的命名空间,具体取决于您使用的 UI 框架。
// For instance:
using Microsoft.Reporting.WebForms;
// Or:
using Microsoft.Reporting.WinForms;
您必须包括 Microsoft.Reporting.WebForms
我正在使用 Visual Studio 2013 Ultimate 预览版,但找不到或添加“使用 Microsoft.Reporting.WebForms;” 或“使用 Microsoft.Reporting.WinForms;” 在 C# WebForm 网站项目中。请为我解释为什么?我在 MSDN 上寻找这些命名空间,但我可以在 Visual Studio 2005、2008、2010 上找到参考,但在更高版本上找不到参考。