I have the following Image control within a repeater. I'm trying to get the username to render in between ~/profilepics/ and .jpg but I get the following rendered output

/profilepics/%3C%25#DataBinder.Eval(Container.DataItem,%20%22usernameFrom%22)%20%25%3E.jpg

Here is the markup

<asp:Image ID="Image1" runat="server" ImageUrl='~/profilepics/<%#DataBinder.Eval(Container.DataItem, "username") %>.jpg' />

I have also tried the same but with double quotes and get the same result.

<asp:Image ID="Image1" runat="server" ImageUrl="~/profilepics/<%#DataBinder.Eval(Container.DataItem, "username") %>.jpg" />
link|improve this question
I think the 'embedded' tag is misused in this context. The tag refers to 'embedded systems'. – Clifford Oct 3 '09 at 9:06
@clifford, I agree, tag removed... – Jakob Gade Oct 3 '09 at 9:56
@clifford,Jakob, agree too, added 'late-bound evaluation' tag instead – o.k.w Oct 3 '09 at 13:57
feedback

2 Answers

up vote 0 down vote accepted

It will not work this way. The Image WebControl will not take such markup. The common method is to use ItemDataBound event to assign the image source to each image control within a repeater item.

If you want to use those markups, do not use WebControl, try this:

<img src='<%ResolveClientUrl("~/profilepics")%>/<%#DataBinder.Eval(Container.DataItem, "username") %>.jpg' />

Disclaimer: I did not test the exact code above but the concept should work.

link|improve this answer
Code worked great! Thanks o.k.w – user76071 Oct 4 '09 at 0:49
You are welcomed, Vince. Glad it works :) – o.k.w Oct 4 '09 at 2:13
feedback

You can't use the databinding syntax inside a server control. Have you tried with a plain img HTML tag instead?

<img src='/profilepics/<%#Eval("username") %>.jpg' />
link|improve this answer
@Jakob, the double quote for src will conflict with those inside Eval. Otherwise it will work. We also cannot assume "/profilepics" is at the root of the site. – o.k.w Oct 3 '09 at 3:14
@o.k.w, you're right, I've fixed the double-quotes. – Jakob Gade Oct 3 '09 at 4:06
feedback

Your Answer

 
or
required, but never shown