i have asp.net web application in which i used to generate list of text boxes depend on count in table dynamically.however whenever I load the details I am getting the same output in the TextBox every time.
please help.
after generating all controls(TextBox,dropdownlist etc) i am doing this below
TextBox txtRes1 = (TextBox)PlaceHolder1.FindControl("id1");
txtRes1.Text= concat(value1, valu2);
public int concat(strin v1, string v2)
{
return v1+v2;
}
TextBox txtRes1 = (TextBox)PlaceHolder1.FindControl("id1");
txtRes1.Text= concat(value1, valu2);
public int concat(strin v1, string v2)
{
return v1+v2;
}

Merajuddin AnsariPosted Feb 22, 2016, 1:57 AM
Merajuddin AnsariPosted Feb 21, 2016, 6:40 AM
Riddhi ValechaPosted Feb 21, 2016, 6:13 AM
Merajuddin AnsariPosted Feb 21, 2016, 6:00 AM
Amit Kumar SinghPosted Feb 21, 2016, 5:55 AM
Merajuddin AnsariPosted Feb 21, 2016, 5:54 AM
Amit Kumar SinghPosted Feb 21, 2016, 5:49 AM
Riddhi ValechaPosted Feb 21, 2016, 5:46 AM
Merajuddin AnsariPosted Feb 21, 2016, 5:43 AM
Amit Kumar SinghPosted Feb 21, 2016, 5:33 AM
Riddhi ValechaPosted Feb 21, 2016, 5:20 AM
txtRes1.Text= concat(value1, valu2).ToString();
public int concat(strin v1, string v2)
{
return v1+v2;
}