I have the following grid:
<asp:GridView DataSourceID="accountsDataSource" DataKeyNames="Id" ShowEditButton="true" ...>
<asp:TemplateField HeaderText="Name">
<ItemTemplate>
<asp:Hyperlink ID="lnkGridEditEntry" runat="server" Text='<%# Bind("Name")%>' NavigateUrl="..." />
</ItemTemplate>
<EditItemTemplate>
<asp...
Hello, Im looking for similar functionality on C# 2.0 (people works with typed datasets and foreign keys) as referenced in these posts : Post 1 or Post 2
My question is How to update changes on db where a row in Table "A" displayed on DataGrid "X" is modified (user change database value showed).
(*) Table "A" is joined with "N" Tables
...
I used asp.net server side control to display and modify data in database, the control is just like this one:
http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/alleditablecolumns/defaultcs.aspx
what I want to do is after I click the "edit" button it will display a "edit" ui, and I want everytime I modify the data in the tex...
When i try to insert a my database's table in my dataset, it doesn't generate the update command like had done with other tables.
It generates only insert and select commands
How can i do to generate it without write it manually?
thanks
...