I work on this asp.net mvc 3 project and till now we used local resources to simulate real life data. Now due to the progress the project made all resources (images as far as this questions is concerned) are moved to a directory on a remove server.
So until now i had this code in my razor view to display an image on the screen :
<img src= "@Url.Content("~/Content/" + Model[i].FieldValue)" alt="Logo" />
Now I have to use the new directory the path to which you can see in my attempt to renew my code and keep it working with the new set up
<img src= "@Url.Content("\\\\85.53.1.107\\East\\upload\\"+Model[i].FieldValue)" alt="Logo" />
So the actual address is \\85.53.1.107\East\upload\. What is the proper way to change my code to keep displaying the picture? Like now I only see the name of the image without it's extension.