My question is very similar to this:
Show images in Repeater control
The selected answer to that question is this:
<asp:Image ID="Image1" height="32" width="32" runat="server"
ImageUrl='<%# Eval("ImageUrl") %>' />
However, in my case, I have a pre-selected filename path. I've tried this and it doesn't work:
<asp:Image ID="Image1" height="32" width="32" runat="server"
ImageUrl='D:\MyPics\Photos\<%# Eval("PhotoLink") %>' />
The Eval doesn't get converted to anything, and when I look at my source after the page is rendered it says:
<img src="D:\MyPics\Photos\<%#Eval("PhotoLink")%
I'm sure it's something really stupid, but I can't figure it out.