What is the correct syntax to add a Eval() function to the NavigateURL attribute of asp:HyperLink?
I am trying to achieve the below:
NavigateUrl=\"http:/
Try with this
NavigateUrl='http://home/?<%# Eval("U_ID") %>'
or
NavigateUrl='<%# "http://home/?" + (string)Eval("U_ID") %>'