Techniques For Distributing ASP.NET User Controls Across Projects(跨项目分布 ASP.NET 用户控件的技术)
问题描述
当您想要创建可供不同项目使用的控件库时,跨不同项目分布 ASP.NET 用户控件非常有用.
Distributing ASP.NET user controls across different projects can be really useful when you want to create a library of controls that can be used by different projects.
不幸的是,据我所知,ASP.NET(至少 2.0)并不能很好地支持这一点.
Unfortunately, to my knowledge, ASP.NET (2.0 at least) doesn't support this very cleanly.
我知道的唯一技术是将控件添加到另一个项目,然后将 ascx(并且只有 ascx,除非您当然要扩展控件)文件复制到引用该控件的项目中,然后删除来自它的 CodeBehind 参考.
The only technique I know of is to add the control to another project, then copy the ascx (and only the ascx, unless you want to extend the control of course) file into the project that references the control, and remove the CodeBehind reference from it.
它有效,但感觉很hackish.
It works, but it feels hackish.
有谁知道跨项目拆分控件的更好方法?(也许 3.5 有帮助?)
Does anyone know of a better way to split controls across projects? (perhaps 3.5 helps somehow?)
推荐答案
您可以查看 Scott Guthrie 的这篇文章:
You could check out this article by Scott Guthrie:
构建可重用的 ASP.NET 用户控件和页面带有 VS 2005 的库
这篇关于跨项目分布 ASP.NET 用户控件的技术的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:跨项目分布 ASP.NET 用户控件的技术


- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04