Inserting Data into GridView |
|
Answered By
Moderator1
on
12/17/2009 9:56:20 AM |
|
|
|
|
Hi,
Please read our articles for your questions below,
http://www.aspdotnetcodes.com/GridView_Insert_Edit_Update_Delete.aspx
Also please be specific, what you want to know in insertion of data to gridview. |
|
|
|
answer of ur question |
|
Answered By
aadi
on
12/28/2009 1:04:00 AM |
|
|
|
|
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
customer.Delete(GridView1.DataKeys[e.RowIndex].Values[0].ToString());
FillCustomerInGrid();
}
Regards
Aadi |
|
|
|