Q. While writing code in Visual Studio 2005 you creates a new instance of a ASP.NET TextBox server control, what do you need to do to get the TextBox to display on the Web page?


 A. Call the ShowControl method on the TextBox.
 B. Set the VisibleControl to true on the TextBox.
 C. Add the TextBox instance to the form1.Controls collection.
 D. Execute the AddControl method on the Web page.
Ans:C.