将Web用户控件编译为DLL

时间:2013-01-24 11:14:22

标签: c# visual-studio-2008 sharepoint web-parts webusercontrol

我在Visual Studio 2008中创建了一个Web User Control。我想将Web User Control编译为DLL,以便最终在SharePoint Web部件中使用它。

但我不知道如何在SharePoint中编译或使用我的Web User Control

任何人都知道这是如何运作的?

1 个答案:

答案 0 :(得分:1)

阅读this ...

在manifest.xml中包括这个..

<TemplateFile Location="ControlTemplates\"Your Web User Control Name".ascx" />

然后在你的ascx文件中包含这个......

RootFiles\TEMPLATE\ControlTemplates\"Your Web User Control Name".ascx

然后从您的.cs文件中调用

_value = Page.LoadControl("~/_controltemplates/"Your Web User Control Name".ascx");

修改

试试这个......

转到开始&gt;所有程序&gt; Visual Studio 2008&gt; Visual Studio工具&gt;单击Visual Studio 2008命令提示符。 输入以下命令,然后按Enter键。

devenv.exe / resetskippkgs