Posted: 6/2/2011
Hi
I am quite new to the ASP.NET framework and I am trying to design a datagridview table that does the following:
1. Retrive data from an existing database using a connection string2. Displays that data3. Allows user to edit and make changes to every row in the datagridview.4. Allows to user to insert data (at the footer) into the dataset through the datagridview table using textboxes and dropdownlists5. The dropdownlist contains elements from another database retrieved through another connection string.
lets say for example that my dataset contained the following columns:1. ID Number2. First Name3. Last Name
Thank You in advance
Posted: 6/5/2011
Hi Akhil,
We have been resolving issue where we display data using GridView and SqlDataSource. You can check the conversation on the following link: http://www.codeasp.net/forums/asp-net-topics/data-access/715/how-to-add-modify-data-for-2-or-3-tables-at-the-same-time-plz-help/1#2448%29 - there you will see how to implement the thing you want, the same procedure applies for you.
Moreover, you can check the following links too:
Of course, there are many more article available on internet, make a search ;).
Hope this helps,Hajan
Posted: 6/9/2011
Hi.
You can check out this link.It will be really helpful.
http://geekswithblogs.net/dotNETvinz/archive/2009/02/22/gridview-insert-edit-update-and-delete--the-ado.net-way.aspx
Thank you.