Question Data Access

munnaluru

New member
Joined
Nov 2, 2008
Messages
4
Programming Experience
Beginner
I have a gridview control in which i have the data from the database. In the last column of the grid view i have added a button control for each row. When i click the button in each row of the grid view i should display a form which contains the form controls to edit the data in each row of the grid view.

Can anybody help me to get the code for the above problem.

Pls do help me as early as possible

thanku
 
Last edited:
You say that you have a grid view yet this:
i should display a form which contains the form controls to edit the data
makes it sound like a WinForms app. The GridView is an ASP.NET, i.e. Web control, while the DataGridView is a Windows Forms control. Please use the correct names for things and also make it plain whether you're creating a WinForms or ASP.NET app and there'll be no confusion.
 
make it plain whether you're creating a WinForms or ASP.NET app and there'll be no confusion.

I was going to say "Preferably by posting in the ASP.NET Data Access forum if youre using web forms" but I notice that both forums lead here.. Any ideas why?
 
I was going to say "Preferably by posting in the ASP.NET Data Access forum if youre using web forms" but I notice that both forums lead here.. Any ideas why?
Data access is data access, wherever it's done from. This forum is supposed to be for ADO.NET questions. This thread actually has nothing to do with data access. GridViews and DataGridViews are about displaying data, which may or may not have come from a database. Displaying data from a grid in another page/form is also a WebForms/WinForms issue, not a data access issue.
 

Latest posts

Back
Top