Question:You are creating a custom web server control that extends the features of the ASP.NET Button control. Which steps should you take? (Choose all that apply.)
A Ensure that your control inherits from the WebControl class and exposes the base Button control as a property of the class.
B Ensure that your control inherits directly from the Button control.
C Override the Render method of your control and be sure to call base.Render (C#) or MyBase.Render (Visual Basic).
D Override the RenderChildren method of your control and be sure to call base.RenderChildren (C#) or MyBase.RenderChildren (Visual Basic).
+ AnswerB C
+ Report