I have an image button on my ASP.Net form..... however the bmp image for the control does not show...
I know that relative path URL is best to assign the Image property but my pictures are not in the path of the web site so I have to use absolute path.
ImgProduct.ImageURL="file:///" & "D:\Product\Images\orange.jpg"
It works on my development machine .. but not the server...
Do I need "file:///" when specifying the absolute path? I guess having URL in the property name ImageURL is confusing me.
I know that relative path URL is best to assign the Image property but my pictures are not in the path of the web site so I have to use absolute path.
ImgProduct.ImageURL="file:///" & "D:\Product\Images\orange.jpg"
It works on my development machine .. but not the server...
Do I need "file:///" when specifying the absolute path? I guess having URL in the property name ImageURL is confusing me.