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 用户控件的技术
基础教程推荐
- 从 C# 控制相机设备 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- 如果条件可以为空 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 将数据集转换为列表 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 获取C#保存对话框的文件路径 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
