How to display image stored on the network in asp.net (using c#). I want img src to be the one given below:
\\pgapp\folder\image.jpg, where pgapp is the shared drive on the network.
I am using these codes but its not displaying the image on the webpage.
originalImage2.ImageUrl=@"\\pgapp\folder\image.jpg";
or
originalImage2.Attributes["src"]=ResolveUrl(@"\\pgapp\folder\image.jpg");
<div ID="imgContainer" runat="server" style="width: 400px; height: 400px; overflow:auto; border: solid 1px black;
padding: 10px; margin-bottom: 5px;" >
<asp:Image ID="originalImage2" runat="server" />
</div>


