I have:
Which is good.VB Code:
<asp:HyperLink id="lnkEdit" ImageUrl="/Resource/Edit.gif" NavigateUrl='<%# DataBinder.Eval(container.DataItem, "DivisionKey") %>' runat="server"> </asp:HyperLink>
When I hover my mouse over it show's this correctly.
However, for the navigate URL I would like:
BUT when I add the Woof.aspx text then the hyperlink no longer displays the value from my dataset, but in fact actually shows the "<%# DataBinder..." in my link.VB Code:
NavigateUrl='Woof.aspx?Moose=<%# DataBinder.Eval(container.DataItem, "DivisionKey") %>'
Any ideas?
Woof




Reply With Quote