简体   繁体   中英

Html Image control not displaying image

Below is my html image control:

<img alt="" src="C:\Users\hkalidindi\Desktop\Feedback.jpg" style="height: 19px; width: 20px"/>

我的aspx设计页面显示图像

But after debugging it is not showing me any image:

调试后图像不可见

I am new to dotnet..please help me to solve this issue...I know how to display image in image control but i am bit confused about the html image control...

"C:\\Users\\hkalidindi\\Desktop\\"

Is only local, try uploading it to a website such as http://imageshack.us , http://tinypic.com , grab the direct link and put that in the source.

Use image only from the content of your website. So copy the image in your website folder say Images and access your image as <img alt="" src="..\\images\\Feedback.jpg" style="height: 19px; width: 20px"/> . Or you could use Asp.NET Image control and set image path in Server code using

myImage.ImageUrl=Server.MapPath("Images\Feedback.jpg");
<img src="URL"> 

Here URL = The url of the image.

Possible values (for src):

An absolute URL - points to another web site (like src="http://www.example.com/image.gif")

A relative URL - points to a file within a web site (like src="image.gif")

Refer: HTML src Attribute

You are trying to call the image in your local folder. Add the image to the 'Images' folder in your solution and link to that.

Make sure the image is being referenced from a folder that is in your websites application/dir. Then you can reference it simply by using a tag like so:

<asp:Image id="imgFeedback" runat="server" ImageUrl="~/_common/img/feedback.jpg" />

Or set the image path on the server side:

this.imgFeedback.ImageUrl = Server.MapPath("\_common\img\feedback.jpg\");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM