vote up 0 vote down star

I have a tag in a master page. I use this master page in many folders. So the src path of the tag should be different for each folder. Here is my code :

<img src="images/1.gif" />

and I have a folder named "images" and a folder named "Users". Master Page is in the root, but I use it in Users folder.

How can I set a dynamic address for src?

flag

2 Answers

vote up 5 vote down check

The easiest way would be to use an asp:Image tag. You need to add runat="server" in order to use ~ syntax to resolve your URLs.

<asp:Image ID="myImage" runat="server" ImageUrl="~/images/1.gif" />
link|flag
+1- same end result as my way, but a few more changes. – RichardOD Oct 1 at 20:58
Thanks. It's OK for <img> but another problem is for background-image attribute in <td> tag. like this : <td style="background-image: images/1.gif;"> </td> How can I solve it? – Mehdi Dehghani Oct 1 at 21:03
style="background-image: url(<%= ResolveUrl("~/images/1.gif") %>);" – meandmycode Oct 1 at 21:17
vote up 2 vote down

Just use <img runat="server" src="~/images/1.gif" />. This is documented here.

link|flag

Your Answer

Get an OpenID
or

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