【发布时间】:2009-10-21 05:06:58
【问题描述】:
我的页面和控件继承自两个类。这两个类获得相同的基本信息集,但就目前而言,代码被实现了两次。有没有办法从一个基类继承?
public partial class SessionPage : System.Web.UI.Page
{
protected override void OnInit(EventArgs e)
{
// Loads the session information from the database
// stores in member vars for the page to use
}
}
public partial class SessionControl : System.Web.UI.UserControl
{
protected override void OnInit(EventArgs e)
{
// Loads the session information from the database
// stores in member vars for the user control to use
}
}
【问题讨论】:
标签: c# asp.net inheritance