Just like you normally would. E.g. from the A folder:
<img src="../Images/MyImage.gif" />
or
<asp:Image ImageUrl="../Images/MyImage.gif" runat="server" />
In addition to that, .NET also supports the ~ syntax where the ~ points to the application's root. This works only with server side controls (e.g. <asp:Image /> and <img runat="server" />):
Again, from the A folder:
<img src="~/Images/MyImage.gif" runat="server" />
or
<asp:Image ImageUrl="~/Images/MyImage.gif" runat="server" />
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out this post.