For this You have to register Gridview2_RowEditing Event in Code behind. For example : protected void GridView2_RowEditing(object sender, GridViewEditEventArgs e) { //Write your editing Code here. } And for cancelling editing, You need to register Gridview2_RowCancellingEdit event. For Example : protected void GridView2_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e) { }. You can visit MSDN for further information http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowediting.aspx[^] Hope this will make sense to you. Ankit Zaveri
A
ankit zaveri
@ankit zaveri
Posts
-
Error in editing gridview -
AL3 Format [modified]Hi All, In my Project, I want to Convert Data fetched from SQL server 2005 database to AL3 (ACORD Automation Layer 3) Format using c# 2.0(I am working in ASP.NET with c#) I have read some documents online about AL3 format. But I didn't get how to parse Data into AL3 format. Please help if you have any idea.. Thanks in advance. Ankit Zaveri
modified on Wednesday, August 26, 2009 7:17 AM