I am trying to bind an ASP.NET hyperlink to the "Handle" column of my dataset like this:
<ItemTemplate>
<asp:HyperLink ID="idTracking" runat="server" NavigateUrl='<%# "javascript:SendPath(" + Eval( "Handle", "{0}") + ")" %>' Text="Test" />
</ItemTemplate>
I would like the NavigateUrl to read:
javascript:SendPath('123abc')
However, I cannot introduce the single quotes. How do I do this?