web部分 - sharepoint

时间:2009-11-19 15:59:06

标签: sharepoint

我已经创建了一个用户控件并将该用户控件添加到了我的webpart。但是当我尝试在页面中添加webpart时。我正面临着上述问题。我确保dll出现在GAC中。 我创建了一个用户控件并将该用户控件添加到我的类库中。我编译并签署了dll并将其添加到gac中。但是当我尝试在页面中添加webpart时,我得到了下面提到的错误。并在web.config文件中进行了必要的更改。 我已经确定dac在gac中了。但我仍然得到同样的错误。

" An error occurred during the processing of . Could not load the assembly 'Generate ,       Version=1.0.0.0, Culture=neutral, PublicKeyToken=e5b42758c1bfd2df'. Make sure that it is compiled   before accessing the page. "

请帮帮我。

1 个答案:

答案 0 :(得分:1)

  • 确保用户控件继承 来自Control标签中的解决方案程序集
  • 将控件加载到Web部件的CreateChildControls方法
  • 将此用户控件置于CONTROLTEMPLATES文件夹

您正在部署是否作为功能?

要在本地调试,请在配置文件中检查以下内容:

* customErrors=off
* Enable Stack Traces by adding CallStack=”true” to the SafeMode tag
* Set the compilation debug attribute to "true"