我创建了一个服务器控件(自定义控件)。我想在我的sharepoint项目中使用它。我刚刚通过右键单击工具箱并添加项目,将自定义控件dll添加到工具箱中。现在我只需拖放到可视webpart表面即可。编译时出现以下错误。
The type or namespace name 'SearchCustomControl' does not exist in the namespace 'SearchCustomControl' (are you missing an assembly reference?)'
web.config文件或其他任何地方是否有任何改变?
如果我使用像下面那样注册控件
<%@ Register TagPrefix="ncc" Namespace="SearchCustomControl" Assembly="SearchCustomControl" %>
没有编译错误。部署到sharepoint站点后,它给了我错误。
如何使用我们想在visual studio 2010中的另一个sharepoint项目中引用的自定义控件dll?