what i did so for
var allLiveIDS = Request.Form.AllKeys.Where(key => key.Contains("txt")).ToList();
for (int i = 2; i < allLiveIDS.Count; i++)
{
var Textt= this.FindControl(allLiveIDS[i]) as TextBox;
Textt.Text = "Some Value";
}
but getting null in Textt, pLease share how can i set value to text box