asp.netcommunity-servertelligent

Eval inside an ASP.net repeater doesn't work inside another control


I have a Reapter control with a custom server side control inside of it. When I place the code:

<%# Eval("DateAdded") %>

inside the item template of the repeater it works fine, but when I place it inside the custom server control inside the repeater, it doesn't work. Is it possible to do something like Parent.Eval() or Container.Eval() to get back to the context of the Reapeter rather than the custom control?


Solution

  • The repeater is databound, the control that you are placing this eval statement in isn't. You'll need to pass the value to the control using a property.

    For Example:

    <uc1:MyControl MyProperty='<%# Eval("DateAdded") %>' />
    

    You can now access the MyProperty property inside your control to access this value.