Ok a few things. What web browser are you using to view it in? Is the browser set to accept inline images? Is the image file name exactly as you have coded it (i.e. Not Logo.jpg, or LOGO.jpg, or logo.JPG)?? Try placing the Image in the same directory as your application, and change the code to
Image1.ImageUrl = "logo.jpg" and see if that works.
Try looking at this
LINK
Sub Switch_Image (Src As Object, Args As EventArgs)
If MyImage.ImageURL = "aspnet2.gif" Then
MyImage.ImageURL = "xhtml.gif"
Else
MyImage.ImageURL = "aspnet2.gif"
End If
End Sub
<asp:Button Text="Switch Image" OnClick="Switch_Image" Runat="Server"/>
<asp:Image id="MyImage" Runat="Server"
ImageURL="aspnet2.gif"
ImageAlign="Top"/>
Hope this helps!
I have a web page that will display an image (ie a logo).
I am using the following code but the image is not being displayed in the image control.
Image1.ImageUrl = "C:\logo.jpg".