kentico_borisp
-
4/20/2012 7:13:43 AM
RE:Image Display
Hello,
Every image can be referenced a certain way. It depends, how the image was uploaded. For example if the image was saved as an attachment then you can use the approach below:
<a href="www.domain.com/getattachment/attachmentguid/fileName.ext" > This is a link </a>
The attachmentguid is a variable pointing to the given attachment. If you would use our transformation then the above code would look something like this:
<a href="www.domain.com/getattachment/<%# Eval("customField")%>/fileName.ext" > <%# Eval("DocumentName") %> </a>
Best regards, Boris Pocatko
|