Hi
My code is
//in global.asax
{
Session[
}
al.Add(TextBox1.Text);
al.Add(
GridView1.DataSource = al;
GridView1.DataBind();
TextBox1.Text =
it is working fine but it binds only first row first column every time i want to use two text boxes such that
the first textbox value shoud appear in gridview firsr row firset cell
and second textbox value should appear in gridview first row second column
plase help me on this