How to Reset TextBox and GridView Data in C#.NET

  1. private void Reset()   
  2. {  
  3.     txtbill_no.Text = "";  
  4.     Dll_name.Text = "";  
  5.     dtp_date.Text = "";  
  6.     richTextBox1.Text = "";  
  7.     txtponumber.Text = "";  
  8.     txtquantity.Text = "";  
  9.     txtrate.Text = "";  
  10.     rtb_narat.Text = "";  
  11.     txt_AMT.Text = "";  
  12.     this.dataGridView1.Rows.Clear();  
  13.     txtbill_no.Focus();  
  14. }