4.Is it possible to enter more than one line in a TextBox control?

 Posted by Kmandapalli on 2/19/2014 | Category: ASP.NET Interview questions | Views: 1905 | Points: 40
Answer:

Yes, it is possible to enter more than one line in a TextBox control. To do this, you need to set the Multiline property of the TextBox control to True. You can set this property at design time as we ll as runtime. The syntax to set this property at runtime is as follows:
Textbox1.Multiline = true;


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response