A simple solution to problem is to define relative path for images inside master page.
So if you have coded like following in your MasterPage File
<img src="Images/Logo.gif"/>
Than Replace it with,
<img src="<%= Page.ResolveUrl("~")%>Images/Logo.gif"/>
No comments:
Post a Comment