i have added a button control in gridview and i want to redirect to the another page on button's click event, and also i want to access the values of selected row in a gridview and show that values on other page on button click event which is inside the gridview,, can anybody plz help me out in this .
|
this should be helpful: http://msdn.microsoft.com/en-us/library/bb907626.aspx for accessing values inside RowCommand event find your row first (by index):
and then controls inside it which holds the values you need:
after that all you need to do is to transfer to your page and send values from your controls with it (do that with querystring):
here you can read more about gridview |
|||
|
|
|
You need to add either a ButtonField or a TemplateField with a button inside and then you can add your code to the RowCommand and use the e.CommandName and e.CommandArgument To redirect you can use Response.Redirect(address) To see the values it depends where in the program you want to do it. If during databinding you can use the dataitem("column"). Outside of databinding you can go through the Gridview.Rows collection for the row you want and then look at the row.Cells(columnNumber).Text to see the value. |
|||
|
|
|
I had been encountered the problem like you. The answer is here. How to limit label string length in GridView with Read More link? |
|||
|
|
|
we have an event in gridview called, gridview rowcommand event, in that you can write the code for redirecting to another page using button. First you have to bind the value of which you want to pass in button property called commandargument.
|
|||
|
|
// This focuses the current row where the button lies. you can perform all events of server-controlls //instead of Button e.g LinkButton, Dropdownlist index changes...
|
|||
|
|
