Problem in dispalying images in Product List page
I want to display the images in the Product List page. I modified the code in ProductList.aspx.
Here is my code snippet
<asp:HyperLink ID="ImageURL" runat="server" EnableViewState="false"
NavigateUrl='<%# this.GetItemUrlString(Container.DataItem) %>'>
<asp:Image runat="server" ImageUrl='<%# ((Microsoft.CommerceServer.Catalog.CatalogItemsDataSet.CatalogItem)Container.DataItem)["Image_filename"].ToString()%>'
AlternateText="<%# Eval(DisplayNameColumnName) %>" width="130" height="113" />
</asp:HyperLink>
This Code complies correctly.
But the Problem is,
I have given the imagefilepath value as "./Images/<filename>". This is how they have given for other images in the starter site. Thats why the images are displayed in the product detail page(which lies in the root folder).
This gives me the problem.
Because the ProductList page lies in Control folder. So the image path is coming as "http://localhost/StarterSite/Controls/images/<filename>". So the image is not getting dispalyed.
Kindly help me out in this issue.

