views:

738

answers:

1

I have button in one of the columns in a gridview. On clicking on a button I need to redirect to another page along with parameters to another page.

Can anybody help with this?

+1  A: 

Just do a Server.Transfer(url, true) to the button click event in the codebehind.

Binoj Antony
in the codebehind i have no event for this button as i have added it in the Gridview as ItemTemplate
Nandini
try using RowCommand of GridView http://authors.aspalliance.com/aspxtreme/sys/web/ui/webcontrols/GridViewClassRowCommand.aspx
Binoj Antony