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 = "";
    }

}


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^