How to clear Text box

How to clear Textbox value is easy. You can do it many different ways.

TextBox1.Text = "";

 OR 


TextBox1.Text = string.empty;


OR


TextBox1.Text = null;

No comments:

Post a Comment