Calling super class

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

How can I call the super class in c# ?

e.g.
protected void Page_Load(object sender, EventArgs e)
{
call the super class ???
}


Thanks
Wilson
 
Wilson said:
Hi,

How can I call the super class in c# ?

e.g.
protected void Page_Load(object sender, EventArgs e)
{
call the super class ???
base.Page_Load(sender,e);

}

-cd
 
Back
Top