Hi all i have a form of data. each save button click ,I need to change in DataTable.
protected void Button1_Click(object sender, EventArgs e)
{
DataTable dt = new DataTable();
dt.Columns.AddRange(new DataColumn[3] { new DataColumn("1"), new DataColumn("2"), new DataColumn("3")});
dt.Rows.Add( 1.Text, 2.Text, 3.Text);
}
currently last button click data only storing in data table . how can I store all the button save data to this data table ?
