Hello i have a calculations page and has many textboxes created dynamically. What i want to do is when the first textbox value changed, change the others code behind without using javascript or events. Is there any way to bind textBoxes like this.
Thnx
Ex.Code that i use
tb = new TextBox()
{
ID = String.Format("tb_{0}_{1}_{2}_{3}", x, y, z, i),
Width = 130,
TextMode = TextBoxMode.Number,
Text = ((TextBox)(Master.FindControl("ContentPlaceHolder1").FindControl(String.Format("tb_{0}_{1}_{2}", x, y, z)))).Text.ToString()
};
There is link for sample view for textboxes http://oi61.tinypic.com/2hd8f8p.jpg