Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an image that I want to use it's src attribute in relative format

when my website URL was http://localhost/ I used to use this code to access this image file:

<img alt="something" src="/Files/pic.png">

But now I have to add an application to my site and change my site URL to http://localhost/mysite.

Now none of my images load in this site because the path is still http://localhost/Files/pic.png not http://localhost/mysite/Files/pic.png

how can I change my root URL (/) to http://localhost/mysite/?

Thanks

share|improve this question
@PraVn I will edit and correct it. Thanks – Mosijava Mar 15 '12 at 12:06

4 Answers

up vote 4 down vote accepted

Use tilde ~ in a server control to use a relative path.

<asp:Image runat="server" ID="myImage" ImageUrl="~/Files/pic.png" />
share|improve this answer

You can use ~ symbol to represent root in ASP.Net

<asp:Image ID="Image1" runat="server"  ImageUrl="~/Files/pic.png"/>
share|improve this answer

@rrrr is right, that the way to do it,

<asp:Image runat="server" ID="myImage" ImageUrl="~/Files/pic.png" /> 

but I would use a standard html image with runat="server"

<img runat="server" src="~/YourPath/image.png">

Reason : less server side controls

share|improve this answer

perhaps modifying url will help. It should be possible to "go up" by using ".."

<img alt="something" src="../Files/pic.png">

It'll go up from "mysite" directory and solve the issue.

share|improve this answer
This will probably work in the local dev environment, but may lead to problems on other environments. – rrrr Mar 15 '12 at 11:40
On a second thought... it's relative to the file location, while "~/Files/pic.png" is an absolute "hostname/FolderName/imageName.extension" – adrian.krzysztofek Mar 15 '12 at 11:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.