I am using AspxGridView control and want to redirect to another page by clicking on the edit button. which type of column can be used to get this redirect. I have already tried something like this
<dxwgv:GridViewDataHyperLinkColumn FieldName="id_pag" ReadOnly="True" SortIndex="0" SortOrder="Ascending" Caption="Edit"
VisibleIndex="0" Width=10%>
<PropertiesHyperLinkEdit NavigateUrlFormatString="/user/detail.aspx?id={0}" >
</PropertiesHyperLinkEdit>
<Settings SortMode="DisplayText" />
</dxwgv:GridViewDataHyperLinkColumn>
It does work but you need to have filedname to get it work. But in my case i just want to put an edit button to get to another page rather then hitting a datafield. Also I dont have an edit template in this gridview as i want to edit on a seperate page.
I will appreciate any idea
thanks