如何在 asp.net webforms 项目中声明我的 Basepage 类以实现 IBasePage?
public abstract class BasePage<T> : Page where T : class
{
}
和界面
public interface IBasePage
{
UserProfile UserProfile { get;}
bool IsStreamingAdmin {get;}
int? EmplId {get;}
}
我的最终目标是能够编写如下代码:
IBasePage page = HttpContext.Current.Handler as IBasePage;
if (page.IsStreamingAdmin)
{
//do something here....
}