Skip to main content

Delete text boxs dynamically on click in ASP.net

In this post, i'm going to share to code snippet for delete textbox dynamically on click in asp.net using C#.
  
This example is simple and easily understandable code using asp.net with c#

public void DeleteTextBox()
{
    string strCtrlName;
    TextBox txtCtrl;

    for (int i = 0; i < 12; i++)
    {
        strCtrlName= "Textbox" + i;
        txtCtrl = (TextBox)FindControl(strCtrlName);
        txtCtrl.Text = "";
    }

}