how can I replace some strings in asp (.aspx and .master)
<a href="/<%#Eval ("Link") %>" >My link</a> I want to replace some things from "Link"
thanks!
how can I replace some strings in asp (.aspx and .master)
<a href="/<%#Eval ("Link") %>" >My link</a> I want to replace some things from "Link"
thanks!
Try <%#DataBinder.Eval(Container.DataItem, "Link").ToString().Replace(...)%>