How to create these GridViews?
-
Hello, I created 2 GridViews, A and B. I created 2 datasets from Asp.Net 2.0 profile data. Each GridView has a Bound Field and a Button Field. When a button on GridView A is clicked the following should happen: 1. Copy the Row to GridView B 2. Delete the Row from GridView A Finally, I have a button which would get the data from GridView A and GridView B. What is the best way to create this? And is GridView the best way to do this? Thanks, Miguel
-
Hello, I created 2 GridViews, A and B. I created 2 datasets from Asp.Net 2.0 profile data. Each GridView has a Bound Field and a Button Field. When a button on GridView A is clicked the following should happen: 1. Copy the Row to GridView B 2. Delete the Row from GridView A Finally, I have a button which would get the data from GridView A and GridView B. What is the best way to create this? And is GridView the best way to do this? Thanks, Miguel
I am not sure if its possible without javascript to handle at client side. GrdiView is a server control it means you have to play with database. Best way to me is create tables in databae and then play with data. and delete or copy in between tables or use XML files whatever appeals you. Also you can use Ajax updatepanel so it will look like that its not communicating with server or refresing pages at client side. Personally I'll not suggest you to use ajax while doing these operartions untill unless you are happy with the operations.
Naveed Kamboh Complexity kills, Write easy code for your self. isolutionteam