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