Hey everyone,
I've got a repeater and it is bound to a dictionary . Although I can access the HyperLink, I can't render one. I have this code:
<%# DataBinder.Eval((System.Collections.Generic.KeyValuePair<string, HyperLink>)Container.DataItem, "Value.NavigateUrl") %>
The Value.NavigateUrl
was a test to see if I could access that property, and I can. The output is the URL the hyperlink to link to. I also tried 'Text', which worked. This means that it's recognized as a HyperLink, and can be accessed as one, but I would like to render it as one. How can I do this?
Thanks for any help