Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="ctl00_head1">
<title>Bald Cypress Grove</title> //FIRST TITLE TAG
<meta name='keywords' value='Bald Cypress Grove Bonsai, indoor bonsai tree, bonsai, bonzai, tropical tree, succulant'><meta name='description' value=''>
<script language="javascript">
//Additional Javascript
</script>
<link href="App_Themes/BonsaiOutlet/ComponentArt_menuStyle.css" type="text/css" rel="stylesheet" /><link href="App_Themes/BonsaiOutlet/ComponentArt_tabStyle.css" type="text/css" rel="stylesheet" /><link href="App_Themes/BonsaiOutlet/ComponentArt_treeStyle.css" type="text/css" rel="stylesheet" /><link href="App_Themes/BonsaiOutlet/print.css" type="text/css" rel="stylesheet" /><link href="App_Themes/BonsaiOutlet/style.css" type="text/css" rel="stylesheet" /><link href="App_Themes/BonsaiOutlet/webparts.css" type="text/css" rel="stylesheet" />
<title>Bonsai Tools | Bonsai Trees | Bonsai Supplies</title><meta name='keywords' value='Bonsai, Bonzai, Japanese Bonsai Tools, Trees, Plant'><meta name='description' value='BonsaiOutlet.com is the internets leading supplier of Bonsai Tools, Trees, and Supplies.'> //SECOND TITLE TAG
<title>View Product</title> //THIRD TITLE TAG
<style type="text/css">
.ctl00_ContentZone_0 { border-color:Black;border-width:1px;border-style:Solid; }
</style></head>
The 1st tage is being generated by a method in the PageHelper.cs file. From what I can tell this is the correct method we want to keep. Or at least it is putting the correct tags at the top of the page.
Code: Select all
public class PageHelper
{
public static void RegisterBasketControl(Page page)
{
...
public static void BindMetaTags(Page page, ICatalogable catalogObject)
{
if (catalogObject != null)
{
page.Header.Controls.AddAt(0,new LiteralControl(catalogObject.HtmlHead));
}
}
...
}
}
Code: Select all
<%@ Page Language="C#" MasterPageFile="~/Layouts/Scriptlet.master" Inherits="CommerceBuilder.Web.UI.AbleCommercePage" Title="View Product" %>
......
Thank you in advance for any help.