我得到错误时,在微软报告中添加数据集



我有rdlc报告当我添加新的数据集我得到这个错误

Could not load file or assembly 'BasicFrame.WebControls.BasicDatePicker, Version=1.4.0.25598, Culture=neutral, PublicKeyToken=e1cce521aa9b4849' or one of its dependencies. The system cannot find the file specified.

在一种情况下,问题可能是

在"BasicFrame.WebControls. net"中使用的

命名空间。BasicDatePicker"dll,

你必须添加在"BasicFrame.WebControls"中使用的命名空间。BasicDatePicker" dll项目,到配置文件的主要项目

:

 <namespaces>
    <add namespace="AceComponent.Views.Helpers"/>
  </namespaces>

最新更新