Hi,
normally when i want to dislplay the value of a dataitem in a repeater, i use this:
<%#Eval("contact") %>
but now i want to transform the value of this field (contact) in a codebehind function, so i tried this:
<%= ShowcontactInfo(Eval("Contact")) %>
but then i get the exception (at runtime):
Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control.
What can i do?
Michel