datagrid property builder

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,

using the Hyperlink Column in the datagrid property builder is there a way
to pass a value from the code-behind to the next aspx page?

thanks,
rodchar
 
Is the value you want to pass coming from the datagrid's datasource? Try:

<asp:hyperlinkcolumn
headertext="The Link"
datanavigateurlfield="yourDataColumnName"
datanavigateurlformatstring="otherpage.asp?id={0}"
text="Click me" />

Ray at work
 
Back
Top