| | |
Insert,delete,edit,update in DataGrid?
Please support our ASP.NET advertiser: Intel Parallel Studio Home
![]() |
You can use the GridView which is the most recent version of the DataGrid control in ASP.NET.
You can make use of the GridView events RowCommand, RowDataBound, RowDeleting, RowEditing, RowUpdating which you can set in the GridView markup. See the below code markup.
For more detailed articles on ASP.NET and other technologies visit www.coderewind.com
You can make use of the GridView events RowCommand, RowDataBound, RowDeleting, RowEditing, RowUpdating which you can set in the GridView markup. See the below code markup.
asp.net Syntax (Toggle Plain Text)
<asp:GridView ID="gv_Lookup" runat="server" DataKeyNames="LookupCD" AutoGenerateColumns="True" OnRowDataBound="gv_Lookup_RowDataBound" OnRowEditing="gv_Lookup_RowEditing" OnRowUpdating="gv_Lookup_RowUpdating" OnRowCommand="gv_Lookup_RowCommand" OnRowDeleting="gv_Lookup_RowDeleting" ShowFooter="True" >
For more detailed articles on ASP.NET and other technologies visit www.coderewind.com
Last edited by peter_budo; Dec 16th, 2008 at 4:25 pm. Reason: Keep It Organized - For easy readability, always wrap programming code within posts in [code] (code blocks) and [icode] (inline code) tags.
![]() |
Similar Threads
- Help with automatic update problem and more (Viruses, Spyware and other Nasties)
- Insert & Edit Data in DataGrid (VB.NET)
- Dreamweaver problem... (ASP.NET)
- how to write code for update,delete,cancel buttons in datagrid using vb.net only..plz (IT Professionals' Lounge)
- Datagrid (VB.NET)
- passing parameter to Store Procedure in SqlDataAdapter (VB.NET)
Other Threads in the ASP.NET Forum
- Previous Thread: sugesstion regarding ajax
- Next Thread: Upload File in ASP.net using C#
Views: 2574 | Replies: 1
| Thread Tools | Search this Thread |
Tag cloud for ASP.NET
.net 2.0 activexcontrol advice ajax alltypeofvideos anathor application asp asp.net bc30451 bottomasp.net box browser button c# checkbox click commonfunctions complex connection dataaccesslayer database datagridview datagridviewcheckbox datalist development dgv dropdownlist dynamically edit editing expose feedback fileuploader fill flash form formatdecimal formview google gridview gudi iframe iis javascript list listbox login microsoft migration mono mouse mssql news numerical opera panelmasterpagebuttoncontrols parent problem project radio redirect registration relationaldatabases reportemail richtextbox rows save schoolproject search security select session silverlight smartcard smoobjects software sql sql-server sqlserver2005 suse textbox theft tracking unauthorized validation vb.net video videos view vista visualstudio web webapplications webdevelopemnt webprogramming webservice xsl youareanotmemberofthedebuggerusers





