我有兩個類,我的頁面和控件繼承。這兩個類獲得相同的基本信息集,但按其原樣執行兩次。有沒有辦法從一個基類繼承?ASP.NET會話繼承
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
}
}