asp.net - image src attribut issue -


i storing images in folder on localhost asp.net website.

the image there , and src attribute correctly formed image not displayed in img element.

can body tell me can issue or missing.. when check image in url of brower displayed properly

     localhost:xxxx/tenmodified/setx/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.jpeg 

this markup element

<img id="ctl00_ctl00_contentplaceholder1_contentplaceholderchild_listviewthumbs_ctrl1_ctl03_image1" src="localhost:59657/profiletenmodified/setp/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.jpeg" style="border-width:1px;border-style:solid;height:172px;width:172px;" alt=""> 

try use prefix. http or https

http:// localhost:xxxx/tenmodified/setx/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.jpeg

<img src="http :// domain:port/tenmodified/setx/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.jpeg" /> 

Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -