是否可以将 ascx 控件隔离在单独的项目中?

发布于 2024-08-09 06:06:38 字数 58 浏览 2 评论 0原文

是否可以将 ascx 控件隔离在单独的项目中?我尝试创建一个项目“类库”,但无法添加 ascx 组件。

Is it possible to isolate an ascx controls in a separate project? I tried to create a project 'class library' and I can not add ascx component.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿港巷口少年归 2024-08-16 06:06:38

是的。

您可以在其他项目(Web应用程序)中生成所有内容,但是当您使用ascx时,您必须引用您的ascx项目,并且您还需要将所有ascx文件复制到您想要使用它的项目中的适当位置。

您还可以使用 ClassLibrary,但是您需要手动创建 .ascx 文件和代码隐藏文件,并且在使用它时您还必须将 ascx 文件复制到主项目中。

Yes it is.

You can produce all stuff in the other project(web application), but when You are using ascx You have to make reference to Your ascx project and also You need to copy all ascx files into proper place in project where You want use it.

You can also use ClassLibrary, but then You need to create .ascx files and codebehind files manually and when using it You have to also copy ascx files into main project.

黯淡〆 2024-08-16 06:06:38

是的,你可以这样做。

创建一个网站项目。并使用 Web-Deployment-Projects 部署发布版本,这将为您的网站项目生成单个程序集输出。

将 ascx 前端文件复制到要使用原始库项目的客户端 ascx 前端文件,并将代码隐藏文件指向程序集中的类。

Web 部署项目提供
创建真正可重复使用的最后一步
用户控制组件。你可以采取
同一网站包括
独占用户控件并添加
Web 部署项目来创建
具有名称的单个输出组件
由您选择。是均匀的
直接创建签名
部署到 GAC 的程序集
跨多个共享控制
应用程序无需重新部署
每个 /bin 目录中的程序集。

Yes, you can do this.

Create a website project. and deploy the release-build using Web-Deployment-Projects that will produce single assembly output for your website project.

Copy the ascx front-end files in your client asp.net project where you want to use consume the original library project and point the code-behind files to the classes in the assembly.

Web Deployment Projects provide the
final step to create truly reusable
user control assemblies. You can take
the same Web site consisting
exclusively of user controls and add a
Web Deployment Project to create a
single output assembly with the name
of your choice. It's even
straightforward to create a signed
assembly to deploy to the GAC for
sharing controls across multiple
applications without redeploying the
assembly in each /bin directory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文