
- Forum
- Web Development
- ASP.NET how to move the particular rows or multiple rows in gridview are selected using check
-
Junior Member
how to move the particular rows or multiple rows in gridview are selected using check
hi, i am gnanadesigan.k. how to move the particular rows or multiple rows in gridview are selected using checkbox. That selected rows can be stored in another table but not in current table.please reply what concept which we have to use?and tell the procedure.....
-
Junior Member
Re: how to move the particular rows or multiple rows in gridview are selected using c
HI,
You can try like this
you place one select link button or checkbox
then if you click the link button then corresponding row values will be take in backend and insert the values in different table
EX:in datagrid_ itemcommand
string item1 = e.Item.Cells[1].Text;
string item2 = e.Item.Cells[2].Text;
string item3 = e.Item.Cells[3].Text;
......
like this you can get the values on differnt strings then insert these values into different table
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules