Hi All,
Please help me to complete the following type of event handling in asp.net with C#
private TableCell CreateTextCell(string name,string id)
{
TableCell cell = new TableCell();
TextBox txt = new TextBox();
txt.ID = id;
txt.AutoPostBack = true;
txt.Text = name;
txt.TextChanged += new System.EventHandler(this.txt_Changed);
cell.Controls.add(txt);
return cell;
}
My Problem is the TextChanged event is not calling or it is not properly handling.. the autopostback is working fine.. but the event handler not..
and one thing I'm using .net 1.1 version in VS2003
Please give me a suggestion
Vimal