将 Web 用户控件编译为 DLL

本文关键字:DLL 编译 控件 Web 用户 | 更新日期: 2023-09-27 17:55:32

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

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

有人知道这是如何工作的吗?

将 Web 用户控件编译为 DLL

阅读此内容...

在您的清单中.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");

编辑

试试这个...

转到"开始">"Visual Studio 2008> Visual

Studio Tools>所有程序">单击"Visual Studio 2008 命令提示符"。键入以下命令,然后按回车键。

devenv.exe/resetskippkgs