Hello,
I am trying to display an image from a Network Location on a Web Form where the path to the picture is store as a field with the database record I am displaying. This is going to be an intranet website where everyone using it will have access to that Network
Location.
My problem is that even though I get the asp:image control's imageurl to have the correct path it will not display the picture. Here is my code:
Dim ImagePath As String = txtPath.Text
imgPicture.ImageUrl = ImagePath
txtPath.Text = "C:\Images\Cup.JPG"
All I get is a blank or broken image. I can copy out the imageurl so I know it is being set I just don't understand why I get no image?
Thanks,
glnnbnz
Go to the complete details ...