I am using NavigateURL to dynamically pull in the url of products on a receipt page.
Here is the exact code:
<a class="blue13" href="<%#Eval("Product.NavigateUrl")%>"><%#Eval("Product.Name")%></a>
It is placing “/checkout/~/” in each of the url.
How can I remove or correct this?
Thanks!
I ended up switching from a regular href to an asp:HyperLink and it corrected the /~/ issue.
So, before I was using
And I switched it to:
Which correct the issue.
Thanks.