我们有一个供不同团队使用的 asp.net 框架。在我们的框架中,我们有一个必须废弃的电子邮件用户控件。该控件已被重写为 webcontrol。
我可以使用户控件过时吗?我尝试将过时的属性放在类名本身
<Obsolete("This usercontrol is obsolte. Use the web control AtaMail")> _
Partial Public Class UCAtaMail
Inherits System.Web.UI.UserControl
...
但是当团队在他们的 aspx 页面上引用控件时,这不会显示在团队中。也许还有其他解决方案?
谢谢。