hi
Sinnce u are using the gridview inside the datalist u will not able to call the event handlers of the gridview in the codebehind file..
instead u can try this ..
In the .aspx page where u declare the grid view
<asp:GridView ID="" runat="server" OnRowEditing="MethodName1" OnRowUpdated="Methodname2" OnRowUpdating="Methodname3">
</asp:gridView>
in the code behind File
protected sub methodname1(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewEditEventArgs)
end sub
protected sub methodname2(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdatedEventArgs)
end sub
protected sub methodname3(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs)
end sub
write the corroesponding code here..
hope this will help