Posted on: 11/25/2014 3:21:39 PM | Views : 382

Hi,
I have gridview whose Add and Delete fucntionality has been acheived. With my present gridview code, please help me how to achieve the EDIT and UPDATE funnctionality. 
<asp:GridView ID="grdCSRPageData" runat="server" Width="100%" border="1" Style="border: 1px solid #E5E5E5;" CellPadding="3" AutoGenerateColumns="False" OnDataBound="grdCSRPageData_DataBound" AllowPaging="true" CssClass="hoverTable" OnPageIndexChanging="grdCSRPageData_PageIndexChanging" DataKeyNames="Id" OnRowDeleting="grdCSRPageData_RowDeleting" PageSize="4" ShowFooter="true" > <AlternatingRowStyle BackColor="#CCCCCC" /> <Columns> <%-- <asp:TemplateField ItemStyle-Width="30"> ...

Go to the complete details ...