Hey guys,
My issue is similar to This question but different enough that I feel it warrants a separate thread.
So I have the following 'view';
// A load of other calls to Model.Title, Model.Description, Model.DownloadURL
// which work fine so no issues with actually ViewModel communication.
<fieldset>
<div id="projectDiv">
// Model.ThumbnailPath is a fully qualified path to an image
// stored on disk, within another folder in another project.
<img src="<%= Model.ThumbnailImagePath %>" alt="Thumbnail Image" height="100px" width="100px" />
</div>
Sadly however, all i get is an outlined white box...no image.
I have debugged the application and intercepted the file path variable thats getting sent into the ViewModel and pasted that into my computer explorer. I get the image I was expecting.
I have tried hard-coding this file path into the 's source attribute and still, an empty white box.
There are many other properties within this Viewpage that are being displayed perfectly, so communication through the application layers is working.
Any ideas why this might not function as expected ?
Thank you for your time.