I would like to pass multiple values over the URL to the corresponding page. Here is my code thus far:
<asp:HyperLinkColumn
DataNavigateUrlField="ID"
DataNavigateUrlFormatString="javascript:MyPage_window=window.open('MyPage.aspx?ID={0}','MyPage_window','width=700, height=475');Transaction_window.focus()"
DataTextField="ID"
DataTextFormatString="View">
</asp:HyperLinkColumn>
How can I add more Column values to pass over the URL from the datagrid Hyperlink Column?
Thanks in advance
<asp:HyperLinkColumn
DataNavigateUrlField="ID"
DataNavigateUrlFormatString="javascript:MyPage_window=window.open('MyPage.aspx?ID={0}','MyPage_window','width=700, height=475');Transaction_window.focus()"
DataTextField="ID"
DataTextFormatString="View">
</asp:HyperLinkColumn>
How can I add more Column values to pass over the URL from the datagrid Hyperlink Column?
Thanks in advance