Hello,
I am using a Theme for my website and I cannot figure out how to specify a skin to use an image saved under the Theme's photos folder. My current code looks like this, but it gets the image from a typical folder, not from a photos folder under the Themes folder:
<asp:DataList SkinID="skinDataList" runat="server" Width="100%">
<AlternatingItemStyle BackColor="#FEF6C5" />
<SeparatorTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="background-image: url(photos/separator/repeating_many_diamonds.jpg);
width: 100%; background-repeat: repeat-x; height: 40px">
<tr>
<td style="width: 100px">
</td>
</tr>
</table>
</SeparatorTemplate>
</asp:DataList>
The path to the image that I want to use is this:
/App_Themes/Fruits/Photos/separator/repeating_many_diamonds.jpg
But I do not know how to specify the path correctly in the skin file. Your help is appreciated.