Pop quiz, what is wrong with the following class? public class MyPlaceHolder : PlaceHolder { protected override void OnInit(EventArgs e) { Page.Trace.Write(this.ID, "In OnInit"); base.OnInit(e); } protected override void OnLoad(EventArgs e) { Page.Trace.Write(this.ID,
Read More...