Updating an image's ImageUrl within a Repeater
- by Django Reinhardt
I hope someone can help me. It's a pretty newbie question, I'm afraid. I have an image inside a repeater, and I would like to change its IMAGEURL based on parameter that's being passed to it.
<asp:Repeater ID="Repeater" runat="server">
<HeaderTemplate>
<asp:Image ID="imgType" runat="server" />
</HeaderTemplate>
<ItemTemplate>
<%# Eval("DisplayName")%>
</ItemTemplate>
<SeparatorTemplate>
<hr />
</SeparatorTemplate>
</asp:Repeater>
There is a SWITCH statement in the code behind that is altering the IMAGEURL depending on what's being passed to it. Inevitably, however, the images ID ("imgType") is not visible to the SWITCH statement (presumably because it's inside a REPEATER).
Any suggestions on the best way to implement this would be greatly appreciated.
Sorry for such a newbie question.