in a document type I set one image field as file type, and user could upload their images by using a selector. In transmission I use <%# GetImage("Image") %> to display the image that they uploaded. However, I found if I add <a> markup in the transmission, the image won't display. I check the souce code of output page, it is
<a href='http://www.google.com'><img alt="" src="/getattachment/e0bfceee-a334-4e18-8ecb-ccd68c7ad9e1/New-document.aspx" /></a>
The image just doesn't show, but if I remove <a> markup, which the output source code is
<img alt="" src="/getattachment/e0bfceee-a334-4e18-8ecb-ccd68c7ad9e1/New-document.aspx" />
The image shows. Does anyone know the reason?