Product & Category HTML Head Code
Posted: Thu May 07, 2009 9:41 am
I'm trying to figure out where in the code it pulls out the 'HTML Head' code set in the admin for products & categories.
In PageHelper.cs I found this:
Where is catalogObject.HtmlHead created?
In PageHelper.cs I found this:
Code: Select all
public static void BindMetaTags(Page page, ICatalogable catalogObject)
{
if (catalogObject != null)
{
page.Header.Controls.Add(new LiteralControl(catalogObject.HtmlHead));
}
}