Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 28 of 28

Thread: Extention Data.. I can't get it to work!

  1. #1
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default Extention Data.. I can't get it to work!

    Hello everybody!
    So before you start posting links to the manual and several threads, I've read ALL of it and tried all of it and I can't get it to work. I have Multistore 9.1.0.1/9.1.0.0 No source code, and the xml package I'm using for my product pages uses the code below for stored procedure:
    Code:
    exec dbo.aspdnsf_ProductInfo @ProductID, @CustomerLevelID, 0, 0, @affiliateID
    My goal in all of this is to get some more tabs on the product page (I know it's not where I put it because it works with just <xsl:value-of select="ExtensionData" disable-output-escaping="yes"/>).

    I've tried the info in the manual and I'm sure it works, but I'm probably just missing something. It works fine if I want it to return all of what's in extension data, but not if I want to get just one 'node' or whatever.

    Maybe I'm not putting
    Code:
    <xsl:variable name="MyExtensionData" select="ExtensionData"/>
    <xsl:variable name="MyNodeInExtensionData" select="string('WeddingDate')"/>
    <xsl:variable name="MyValueLocation" select="substring-after($MyExtensionData, concat('&lt;', $MyNodeInExtensionData,'&gt;'))"/>
    <xsl:variable name="MyValue" select="substring-before($MyValueLocation, concat('&lt;/', $MyNodeInExtensionData, '&gt;'))" />
    in the right place? Not sure.

    Anyway, this is what I want in ExtensionData...
    <ExtensionData>
    <Features>This is where Features would go!!!</Features>
    <Specifications>This is where Specifications would go!!</Specifications>
    <Fits>This is where the Fits section would go!!!</Fits>
    <Mounting>This is where Mounting instructions would go!!!</Mounting>
    </ExtensionData>
    But I've been testing with the code from the manual.

    If anyone could shed some light on this, it would be greatly appreciated.
    Also, I'm not incredibly familiar with xml or aspdnsf, so a lot of detail is also extremely appreciated!

    Thanks,
    Kayla

  2. #2
    ssgumby is offline Senior Member
    Join Date
    Feb 2009
    Posts
    683

    Default

    Quote Originally Posted by tuffy View Post
    Hello everybody!
    So before you start posting links to the manual and several threads, I've read ALL of it and tried all of it and I can't get it to work. I have Multistore 9.1.0.1/9.1.0.0 No source code, and the xml package I'm using for my product pages uses the code below for stored procedure:
    Code:
    exec dbo.aspdnsf_ProductInfo @ProductID, @CustomerLevelID, 0, 0, @affiliateID
    My goal in all of this is to get some more tabs on the product page (I know it's not where I put it because it works with just <xsl:value-of select="ExtensionData" disable-output-escaping="yes"/>).

    I've tried the info in the manual and I'm sure it works, but I'm probably just missing something. It works fine if I want it to return all of what's in extension data, but not if I want to get just one 'node' or whatever.

    Maybe I'm not putting
    Code:
    <xsl:variable name="MyExtensionData" select="ExtensionData"/>
    <xsl:variable name="MyNodeInExtensionData" select="string('WeddingDate')"/>
    <xsl:variable name="MyValueLocation" select="substring-after($MyExtensionData, concat('&lt;', $MyNodeInExtensionData,'&gt;'))"/>
    <xsl:variable name="MyValue" select="substring-before($MyValueLocation, concat('&lt;/', $MyNodeInExtensionData, '&gt;'))" />
    in the right place? Not sure.

    Anyway, this is what I want in ExtensionData...
    <ExtensionData>
    <Features>This is where Features would go!!!</Features>
    <Specifications>This is where Specifications would go!!</Specifications>
    <Fits>This is where the Fits section would go!!!</Fits>
    <Mounting>This is where Mounting instructions would go!!!</Mounting>
    </ExtensionData>
    But I've been testing with the code from the manual.

    If anyone could shed some light on this, it would be greatly appreciated.
    Also, I'm not incredibly familiar with xml or aspdnsf, so a lot of detail is also extremely appreciated!

    Thanks,
    Kayla
    Try this. First create a new query specifically for the extension data. The when you access this query like ive show below

    Code:
      <query name="ExtensionElements" rowElementName="Extension" retType="xml">
        <sql>
          <![CDATA[
                    select CONVERT(xml, ExtensionData) as ExtensionData from dbo.Product with (nolock) where ProductID=@ProductId for xml path('Product')
                   
                ]]>
        </sql>
        <queryparam paramname="@ProductID"       paramtype="request"    requestparamname="ProductID"                                  sqlDataType="int" defvalue="0"  validationpattern="" />
    
      </query>
    
    <xsl:value-of select="/root/ExtensionElements/Product/ExtensionData/WeddingDate" disable-output-escaping="yes" />
    <xsl:value-of select="/root/ExtensionElements/Product/ExtensionData/SomeOtherNode" disable-output-escaping="yes" />

  3. #3
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    Thanks for the quick response!
    I tried that and it doesn't seem to be changing anything...

  4. #4
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    Can you post exactly what you have in your product extensiondata field?


    TTFN

    BFG

  5. #5
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    Right now it's:

    <ExtensionData>
    <Features>This is where Features would go!!!</Features>
    <Specifications>This is where Specifications would go!!</Specifications>
    <Fits>This is where the Fits section would go!!!</Fits>
    <Mounting>This is where Mounting instructions would go!!!</Mounting>
    </ExtensionData>

  6. #6
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    OK - so you need a query at the top that is like this :-

    C#/VB.NET Code:
     <query name="ExtensionElements" rowElementName="Extension" retType="xml">
        <
    sql>
          <![
    CDATA[
                    
    select CONVERT(xmlExtensionData) as ExtensionData FROM Product WHERE ProductID = @ProductID;
                ]]>
        </
    sql>
        <
    queryparam paramname="@ProductID" paramtype="request" requestparamname="ProductID" sqlDataType="int" defvalue="0"   validationpattern="^\d{1,10}$" />
      </
    query
    & then you call it like this :-

    C#/VB.NET Code:
    <xsl:value-of select="/root/ExtensionElements/Extension/ExtensionData/Features" disable-output-escaping="yes" />
    <
    xsl:value-of select="/root/ExtensionElements/Extension/ExtensionData/Specifications" disable-output-escaping="yes" />
    <
    xsl:value-of select="/root/ExtensionElements/Extension/ExtensionData/Fits" disable-output-escaping="yes" />
    <
    xsl:value-of select="/root/ExtensionElements/Extension/ExtensionData/Mounting" disable-output-escaping="yes" /> 

    You should be able to copy & paste those exactly.


    TTFN

    BFG

  7. #7
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    Still nothing...

  8. #8
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    Can you define "nothing"?
    Can you post your exact xmlpackage?
    Can you turn the debug on give us the output?


    TTFN

    BFG

  9. #9
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    Nothing is happening that I can see... no output when I put that code in.
    I bought the xml package from aspdnsf so I don't think I can post the code..Configurable Tabbed Variant Dropdown

    Not sure what you want when you turn debug on, it basically just posts the code on the page....

    Sorry for being frustrating

  10. #10
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    When you turn debug on - it should give you 3 text boxes - can you post the contents of the second one (runtime.xml) - it should start with ...
    C#/VB.NET Code:
    <root>
      <
    System

    TTFN

    BFG

  11. #11
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    Code:
    <root>
      <System>
        <IsAdminSite>False</IsAdminSite>
        <IsAdminSiteInt>0</IsAdminSiteInt>
        <CustomerID>0</CustomerID>
        <DefaultVATSetting>1</DefaultVATSetting>
        <CustomerVATSetting>1</CustomerVATSetting>
        <UseVATSetting>1</UseVATSetting>
        <CustomerLevelID>0</CustomerLevelID>
        <CustomerLevelName>
        </CustomerLevelName>
        <CustomerFirstName>
        </CustomerFirstName>
        <CustomerLastName>
        </CustomerLastName>
        <CustomerFullName>
        </CustomerFullName>
        <SubscriptionExpiresOn>
        </SubscriptionExpiresOn>
        <CustomerRoles>
        </CustomerRoles>
        <IsAdminUser>False</IsAdminUser>
        <IsSuperUser>False</IsSuperUser>
        <VAT.Enabled>false</VAT.Enabled>
        <VAT.AllowCustomerToChooseSetting>true</VAT.AllowCustomerToChooseSetting>
        <LocaleSetting>en-US</LocaleSetting>
        <CurrencySetting>USD</CurrencySetting>
        <CurrencyDisplayLocaleFormat>
        </CurrencyDisplayLocaleFormat>
        <WebConfigLocaleSetting>en-US</WebConfigLocaleSetting>
        <SqlServerLocaleSetting>en-US</SqlServerLocaleSetting>
        <PrimaryCurrency>USD</PrimaryCurrency>
        <PrimaryCurrencyDisplayLocaleFormat>
        </PrimaryCurrencyDisplayLocaleFormat>
        <Date>5/19/2011</Date>
        <Time>9:51 AM</Time>
        <SkinID>1</SkinID>
        <AffiliateID>0</AffiliateID>
        <IPAddress>69.39.30.34</IPAddress>
        <QueryStringRAW>
        </QueryStringRAW>
        <UseStaticLinks>
        </UseStaticLinks>
        <PageName>p-2-series-ii-security-console-8-wide.aspx</PageName>
        <FullPageName>/p-2-series-ii-security-console-8-wide.aspx</FullPageName>
        <XmlPackageName>product.configurable-tabbedvariantddown.xml.config</XmlPackageName>
        <StoreUrl>http://aspdotnetstorefront.tuffyproducts.com/</StoreUrl>
        <CurrentDateTime>Thu, 19 May 2011 16:51:08 GMT</CurrentDateTime>
        <CustomerIsRegistered>false</CustomerIsRegistered>
        <StoreID>1</StoreID>
        <FilterProduct>False</FilterProduct>
        <FilterEntity>False</FilterEntity>
        <FilterTopic>False</FilterTopic>
        <FilterNews>False</FilterNews>
        <RequestedPage>p-2-series-ii-security-console-8-wide.aspx</RequestedPage>
        <RequestedQuerystring>
        </RequestedQuerystring>
      </System>
      <QueryString />
      <Form />
      <Session />
      <Cookies>
        <Referrer>http://aspdotnetstorefront.tuffyproducts.com/c-1-new-featured-products.aspx</Referrer>
      </Cookies>
      <ServerVariables>
        <HTTP_HOST>aspdotnetstorefront.tuffyproducts.com</HTTP_HOST>
        <HTTP_USER_AGENT>Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1</HTTP_USER_AGENT>
        <AUTH_TYPE>
        </AUTH_TYPE>
        <AUTH_USER>
        </AUTH_USER>
        <AUTH_PASSWORD>
        </AUTH_PASSWORD>
        <HTTPS>off</HTTPS>
        <LOCAL_ADDR>50.23.156.148</LOCAL_ADDR>
        <PATH_INFO>/p-2-series-ii-security-console-8-wide.aspx</PATH_INFO>
        <PATH_TRANSLATED>C:\HostingSpaces\TuffyProducts\tuffyproducts.com\wwwroot\p-2-series-ii-security-console-8-wide.aspx</PATH_TRANSLATED>
        <SCRIPT_NAME>/p-2-series-ii-security-console-8-wide.aspx</SCRIPT_NAME>
        <SERVER_NAME>aspdotnetstorefront.tuffyproducts.com</SERVER_NAME>
        <SERVER_PORT_SECURE>0</SERVER_PORT_SECURE>
        <HTTP_CLUSTER_HTTPS>
        </HTTP_CLUSTER_HTTPS>
      </ServerVariables>
      <Runtime>
        <IPAddress>69.39.30.34</IPAddress>
        <FilterProduct>False</FilterProduct>
        <CurrencySetting>USD</CurrencySetting>
        <IsAdminSite>False</IsAdminSite>
        <StoreUrl>http://aspdotnetstorefront.tuffyproducts.com/</StoreUrl>
        <FilterNews>False</FilterNews>
        <SkinID>1</SkinID>
        <FilterEntity>False</FilterEntity>
        <PageName>p-2-series-ii-security-console-8-wide.aspx</PageName>
        <IsSuperUser>False</IsSuperUser>
        <StoreID>1</StoreID>
        <CustomerLastName>
        </CustomerLastName>
        <PrimaryCurrency>USD</PrimaryCurrency>
        <WebConfigLocaleSetting>en-US</WebConfigLocaleSetting>
        <CurrencyDisplayLocaleFormat>
        </CurrencyDisplayLocaleFormat>
        <VAT.AllowCustomerToChooseSetting>True</VAT.AllowCustomerToChooseSetting>
        <AffiliateID>0</AffiliateID>
        <showproduct>1</showproduct>
        <Time>9:51 AM</Time>
        <FilterTopic>False</FilterTopic>
        <QueryStringRAW>
        </QueryStringRAW>
        <VAT.Enabled>False</VAT.Enabled>
        <CustomerLevelName>
        </CustomerLevelName>
        <FullPageName>/p-2-series-ii-security-console-8-wide.aspx</FullPageName>
        <CustomerLevelID>0</CustomerLevelID>
        <EntityName>Category</EntityName>
        <DefaultVATSetting>1</DefaultVATSetting>
        <SqlServerLocaleSetting>en-US</SqlServerLocaleSetting>
        <CustomerVATSetting>1</CustomerVATSetting>
        <LocaleSetting>en-US</LocaleSetting>
        <IsAdminUser>False</IsAdminUser>
        <CustomerIsRegistered>false</CustomerIsRegistered>
        <Date>5/19/2011</Date>
        <CustomerRoles>
        </CustomerRoles>
        <EntityID>1</EntityID>
        <SubscriptionExpiresOn>
        </SubscriptionExpiresOn>
        <CustomerFirstName>
        </CustomerFirstName>
        <UseStaticLinks>False</UseStaticLinks>
        <XmlPackageName>product.configurable-tabbedvariantddown.xml.config</XmlPackageName>
        <UseVATSetting>1</UseVATSetting>
        <CustomerFullName>
        </CustomerFullName>
        <PrimaryCurrencyDisplayLocaleFormat>
        </PrimaryCurrencyDisplayLocaleFormat>
        <IsAdminSiteInt>0</IsAdminSiteInt>
      </Runtime>
      <ExtensionElements>
        <ExtensionData>
          <Product>
            <Features>This is where Features would go!!!</Features>
            <Specifications>This is where Specifications would go!!</Specifications>
            <Fits>This is where the Fits section would go!!!</Fits>
            <Mounting>This is where Mounting instructions would go!!!</Mounting>
          </Product>
        </ExtensionData>
      </ExtensionElements>
      <Products>
        <Product>
          <ProductID>2</ProductID>
          <ProductGUID>4196dae7-44b1-4ccf-abfc-f3528dc856c8</ProductGUID>
          <Name>Series II Security Console 8" Wide</Name>
          <Summary>This console features Tuffy's patented locking system, a large lockable storage compartment, and two great drink holders!&lt;br /&gt;
    </Summary>
          <Description>This high security 16-gauge steel console features Tuffy’s patented
    pushbutton latch system. For safety and convenience while operating the
    vehicle, the lid also latches closed without having to be locked. It has
    a spacious compartment for mounting a CD changer, storing tools,
    electronic equipment, cellular phones, and other valuables. Rubber floor
    mat is included; other accessories are available (See Accessories). &lt;br /&gt;
    &lt;hr /&gt;
    &lt;span style="font-style: italic; font-weight: bold;"&gt;FEATURES:&lt;/span&gt; &lt;br /&gt;
    &lt;ul&gt;
        &lt;li&gt;Patented Pry-Guard II locking system with a 1/4” Steel latch which enables the lid to be latched closed without locking
        &lt;/li&gt;
        &lt;li&gt;Patented Anti-twist push button lock system with a 10 tumbler double bitted security key containing built in weather seals
        &lt;/li&gt;
        &lt;li&gt;Padded arm rest for added comfort, Marine grade vinyl
        &lt;/li&gt;
        &lt;li&gt;Weather resistant lid design incorporates an exclusive hinging system with built-in lid stop
        &lt;/li&gt;
        &lt;li&gt;Added security with Pin-Lock hinge design
        &lt;/li&gt;
        &lt;li&gt;Polypropylene seat belt straps
        &lt;/li&gt;
        &lt;li&gt;Durable texture powder coat finish
        &lt;/li&gt;
        &lt;li&gt;Grade 8 mounting hardware provided
        &lt;/li&gt;
        &lt;li&gt;Oversized drink holders with anti-rattle rubber drink fingers
        &lt;/li&gt;
        &lt;li&gt;Convenience storage tray
        &lt;/li&gt;
        &lt;li&gt;Two point welded 1/2” solid steel striker
        &lt;/li&gt;
        &lt;li&gt;Rubber floor mat
        &lt;/li&gt;
        &lt;li&gt;Removable tray &lt;/li&gt;
    &lt;/ul&gt;
    </Description>
          <SEKeywords />
          <SEDescription />
          <SpecTitle />
          <MiscText />
          <SwatchImageMap />
          <IsFeaturedTeaser />
          <FroogleDescription />
          <SETitle>Series II Security Console</SETitle>
          <SENoScript />
          <SEAltText>Series II Security Console</SEAltText>
          <SizeOptionPrompt />
          <ColorOptionPrompt>Color:</ColorOptionPrompt>
          <TextOptionPrompt />
          <ProductTypeID>1</ProductTypeID>
          <TaxClassID>1</TaxClassID>
          <SKU>012</SKU>
          <ManufacturerPartNumber>012</ManufacturerPartNumber>
          <SalesPromptID>1</SalesPromptID>
          <SpecCall />
          <SpecsInline>1</SpecsInline>
          <IsFeatured>0</IsFeatured>
          <XmlPackage>product.configurable-tabbedvariantddown.xml.config</XmlPackage>
          <ColWidth>4</ColWidth>
          <Published>1</Published>
          <Wholesale>0</Wholesale>
          <RequiresRegistration>0</RequiresRegistration>
          <Looks>469</Looks>
          <Notes />
          <QuantityDiscountID>0</QuantityDiscountID>
          <RelatedProducts>1,3,4</RelatedProducts>
          <UpsellProducts />
          <UpsellProductDiscountPercentage>0.0000</UpsellProductDiscountPercentage>
          <RelatedDocuments />
          <TrackInventoryBySizeAndColor>0</TrackInventoryBySizeAndColor>
          <TrackInventoryBySize>0</TrackInventoryBySize>
          <TrackInventoryByColor>0</TrackInventoryByColor>
          <IsAKit>0</IsAKit>
          <ShowInProductBrowser>1</ShowInProductBrowser>
          <IsAPack>0</IsAPack>
          <PackSize>0</PackSize>
          <ShowBuyButton>1</ShowBuyButton>
          <RequiresProducts />
          <HidePriceUntilCart>0</HidePriceUntilCart>
          <IsCalltoOrder>0</IsCalltoOrder>
          <ExcludeFromPriceFeeds>0</ExcludeFromPriceFeeds>
          <RequiresTextOption>0</RequiresTextOption>
          <TextOptionMaxLength>0</TextOptionMaxLength>
          <SEName>series-ii-security-console-8-wide</SEName>
          <ExtensionData>&lt;ExtensionData&gt;
       &lt;Product&gt;
         &lt;Features&gt;This is where Features would go!!!&lt;/Features&gt;
         &lt;Specifications&gt;This is where Specifications would go!!&lt;/Specifications&gt;
         &lt;Fits&gt;This is where the Fits section would go!!!&lt;/Fits&gt;
         &lt;Mounting&gt;This is where Mounting instructions would go!!!&lt;/Mounting&gt;
       &lt;/Product&gt;
    &lt;/ExtensionData&gt;</ExtensionData>
          <ExtensionData2 />
          <ExtensionData3 />
          <ExtensionData4 />
          <ExtensionData5 />
          <ContentsBGColor />
          <PageBGColor />
          <GraphicsColor />
          <ImageFilenameOverride />
          <IsImport>0</IsImport>
          <IsSystem>0</IsSystem>
          <Deleted>0</Deleted>
          <CreatedOn>4/6/2011 3:07:09 PM</CreatedOn>
          <PageSize>20</PageSize>
          <WarehouseLocation />
          <AvailableStartDate>4/6/2011 12:00:00 AM</AvailableStartDate>
          <AvailableStopDate />
          <GoogleCheckoutAllowed>1</GoogleCheckoutAllowed>
          <SkinID>0</SkinID>
          <TemplateName />
          <VariantID>5</VariantID>
          <VariantName />
          <Price>227.0000</Price>
          <VariantDescription>&lt;span style="font-style: italic; font-weight: bold;"&gt;SPECIFICATIONS:&lt;/span&gt; &lt;br /&gt;
    Part #012, Colors: 01, 02, 03, 04, 05 &lt;br /&gt;
    Exterior Dimensions: 24”L (includes cup holder), 8”W, 18 1/2”H (includes 4” mounting bracket), 3 1/2” Holes for drinks &lt;br /&gt;
    Interior Dimensions: (Length is Tapered) 15 1/2”L (top), 20”L (bottom), 7 1/2”W, 12”H &lt;br /&gt;
    </VariantDescription>
          <SalePrice>0.0000</SalePrice>
          <SkuSuffix />
          <Dimensions />
          <Weight />
          <Points>0</Points>
          <Inventory>100000</Inventory>
          <VariantImageFilenameOverride />
          <isdefault>1</isdefault>
          <CustomerEntersPrice>0</CustomerEntersPrice>
          <Colors>Black,Light Grey,Charcoal Grey,Spice,Camel</Colors>
          <Sizes />
          <SalesPromptName>On Sale For</SalesPromptName>
          <ExtendedPrice>0.0000</ExtendedPrice>
        </Product>
      </Products>
      <Products2>
        <Product>
          <XML_F52E2B61-18A1-11d1-B105-00805F49916B>&lt;Product&gt;&lt;ProductID&gt;2&lt;/ProductID&gt;&lt;ExtensionData&gt;&lt;ExtensionData&gt;&lt;Product&gt;&lt;Features&gt;This is where Features would go!!!&lt;/Features&gt;&lt;Specifications&gt;This is where Specifications would go!!&lt;/Specifications&gt;&lt;Fits&gt;This is where the Fits section would go!!!&lt;/Fits&gt;&lt;Mounting&gt;This is where Mounting instructions would go!!!&lt;/Mounting&gt;&lt;/Product&gt;&lt;/ExtensionData&gt;&lt;/ExtensionData&gt;&lt;/Product&gt;</XML_F52E2B61-18A1-11d1-B105-00805F49916B>
        </Product>
      </Products2>
      <EntityHelpers>
        <Category>
          <Entity>
            <EntityID>17</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Categories</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>categories</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>1</EntityID>
              <XmlPackage>entity.gridwithprices.xml.config</XmlPackage>
              <Name>New Featured Products</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>new-featured-products</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>2</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>On Sale Products</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>2</DisplayOrder>
              <Published>1</Published>
              <SEName>on-sale-products</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>3</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Replacement Locks &amp; Keys</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>3</DisplayOrder>
              <Published>1</Published>
              <SEName>replacement-locks-keys</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>4</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>All Tuffy Products</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>4</DisplayOrder>
              <Published>1</Published>
              <SEName>all-tuffy-products</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>5</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Accessories</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>5</DisplayOrder>
              <Published>1</Published>
              <SEName>accessories</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>6</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Cargo Drawers</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>6</DisplayOrder>
              <Published>1</Published>
              <SEName>cargo-drawers</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>7</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Consoles</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>7</DisplayOrder>
              <Published>1</Published>
              <SEName>consoles</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>8</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Door, Hood, Tailgate, and Bolt Security</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>8</DisplayOrder>
              <Published>1</Published>
              <SEName>door-hood-tailgate-and-bolt-security</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>9</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Underseat Drawers</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>9</DisplayOrder>
              <Published>1</Published>
              <SEName>underseat-drawers</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>10</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Glove Boxes</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>10</DisplayOrder>
              <Published>1</Published>
              <SEName>glove-boxes</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>11</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Lockboxes</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>11</DisplayOrder>
              <Published>1</Published>
              <SEName>lockboxes</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>12</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Rood Storage &amp; Accessories</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>12</DisplayOrder>
              <Published>1</Published>
              <SEName>rood-storage-accessories</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>13</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Speaker &amp; Wheel Well Storage</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>13</DisplayOrder>
              <Published>1</Published>
              <SEName>speaker-wheel-well-storage</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>14</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Truck Bed Security</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>14</DisplayOrder>
              <Published>1</Published>
              <SEName>truck-bed-security</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>15</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Trunks</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>15</DisplayOrder>
              <Published>1</Published>
              <SEName>trunks</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
        </Category>
        <Section>
          <Entity>
            <EntityID>1</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>AM General</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>am-general</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>3</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>H1 Hummer</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>1</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>h1-hummer</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>43</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1996 - 2003</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>3</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1996-2003</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
          </Entity>
          <Entity>
            <EntityID>2</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Chevy</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>chevy</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>5</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>K5 Blazer</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>2</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>k5-blazer</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>4</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>S-10 Blazer</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>2</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>s-10-blazer</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>6</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Suburban</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>2</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>suburban</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>7</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Tahoe</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>2</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>tahoe</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>8</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Dodge</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>dodge</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>9</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Durango</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>8</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>durango</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>13</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Ford</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>ford</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>10</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Bronco</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>13</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>bronco</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>44</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1966 - 1977</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>10</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1966-1977</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>45</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1978 - 1996</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>10</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1978-1996</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>11</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Escape</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>13</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>escape</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>12</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Expedition</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>13</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>expedition</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>14</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Explorer</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>13</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>explorer</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>16</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Honda</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>honda</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>17</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Element</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>16</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>element</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>46</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2003 - 2008</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>17</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2003-2008</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
          </Entity>
          <Entity>
            <EntityID>18</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>International</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>international</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>19</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>CXT</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>18</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cxt</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>20</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Scout</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>18</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>scout</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>21</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Scout II</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>18</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>scout-ii</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>22</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Jeep</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>jeep</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>30</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Cherokee SJ</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cherokee-sj</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>31</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Cherokee XJ</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cherokee-xj</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>61</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1984 - 1996</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>31</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1984-1996</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>62</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1997 - 1999</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>31</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1997-1999</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>63</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2000 - 2001</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>31</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2000-2001</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>23</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>CJ-5</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cj-5</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>47</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1976 - 1983</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>23</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1976-1983</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>48</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>up to 1975</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>23</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>up-to-1975</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>24</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>CJ-7</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cj-7</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>49</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1976 - 1986</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>24</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1976-1986</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>28</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>JK Unlimited 4-Door</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>jk-unlimited-4-door</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>57</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2007 - 2010</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>28</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2007-2010</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>58</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2011 - Current</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>28</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2011-current</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>29</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>JK Wrangler 2-Door</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>jk-wrangler-2-door</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>59</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2007 - 2010</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>29</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2007-2010</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>60</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2011 - Current</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>29</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2011-current</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>27</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>LJ Unlimited</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>lj-unlimited</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>56</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2004 - 2006</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>27</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2004-2006</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>32</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Other</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>other</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>26</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>TJ Wrangler</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>tj-wrangler</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>53</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1997 - 2000</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>26</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1997-2000</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>54</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2001 - 2002</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>26</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2001-2002</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>55</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2003 - 2006</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>26</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2003-2006</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>25</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>YJ Wrangler</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>yj-wrangler</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>50</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1987 - 1990</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>25</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1987-1990</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>51</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1991</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>25</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1991</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>52</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1992 - 1995</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>25</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1992-1995</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
          </Entity>
          <Entity>
            <EntityID>33</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Land Rover</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>land-rover</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>34</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Defender 110</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>33</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>defender-110</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>35</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Defender 90</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>33</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>defender-90</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>36</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Suzuki</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>suzuki</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>37</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Samurai</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>36</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>samurai</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>38</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Toyota</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>toyota</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>39</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>FJ-40, FJ-60</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>38</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>fj-40-fj-60</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>66</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1/1979 - 7/1980</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>39</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>11979-71980</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>64</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1964 - 1972</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>39</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1964-1972</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>65</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1973 - 1978</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>39</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1973-1978</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>67</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1981 - 1984</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>39</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1981-1984</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>40</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>FJ-Cruiser</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>38</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>fj-cruiser</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>68</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2007 - Current</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>40</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2007-current</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>41</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Tacoma</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>38</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>tacoma</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>69</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2005 - Current</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>41</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2005-current</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
          </Entity>
          <Entity>
            <EntityID>42</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Trucks, Vans, SUVs</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>trucks-vans-suvs</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
          </Entity>
        </Section>
        <Manufacturer />
        <Library />
        <Distributor />
        <Genre />
        <Vector />
      </EntityHelpers>
    </root>

  12. #12
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    OK - try this :-


    C#/VB.NET Code:
    <xsl:value-of select="/root/ExtensionElements/ExtensionData/Product/Features" disable-output-escaping="yes" /> 
    <
    xsl:value-of select="/root/ExtensionElements/ExtensionData/Product/Specifications" disable-output-escaping="yes" /> 
    <
    xsl:value-of select="/root/ExtensionElements/ExtensionData/Product/Fits" disable-output-escaping="yes" /> 
    <
    xsl:value-of select="/root/ExtensionElements/ExtensionData/Product/Mounting" disable-output-escaping="yes" /> 


    TTFN

    BFG

  13. #13
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    Sorry, I accidentally left that <products> in there and forgot to change it back... I was just trying everything to see if it would work.

  14. #14
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    So I'm guessing you're good now?



    TTFN

    BFG

  15. #15
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    No... nothing so far has worked, so I was playing around with it (which also didn't work) I forgot to change it back...
    Here's what I should have sent you.........
    Code:
    <root>
      <System>
        <IsAdminSite>False</IsAdminSite>
        <IsAdminSiteInt>0</IsAdminSiteInt>
        <CustomerID>58641</CustomerID>
        <DefaultVATSetting>1</DefaultVATSetting>
        <CustomerVATSetting>1</CustomerVATSetting>
        <UseVATSetting>1</UseVATSetting>
        <CustomerLevelID>0</CustomerLevelID>
        <CustomerLevelName>
        </CustomerLevelName>
        <CustomerFirstName>Kayla</CustomerFirstName>
        <CustomerLastName>McGrath</CustomerLastName>
        <CustomerFullName>Kayla McGrath</CustomerFullName>
        <SubscriptionExpiresOn>
        </SubscriptionExpiresOn>
        <CustomerRoles>Free,Admin,SuperAdmin,NoSubscription,Registered</CustomerRoles>
        <IsAdminUser>True</IsAdminUser>
        <IsSuperUser>True</IsSuperUser>
        <VAT.Enabled>false</VAT.Enabled>
        <VAT.AllowCustomerToChooseSetting>true</VAT.AllowCustomerToChooseSetting>
        <LocaleSetting>en-US</LocaleSetting>
        <CurrencySetting>USD</CurrencySetting>
        <CurrencyDisplayLocaleFormat>
        </CurrencyDisplayLocaleFormat>
        <WebConfigLocaleSetting>en-US</WebConfigLocaleSetting>
        <SqlServerLocaleSetting>en-US</SqlServerLocaleSetting>
        <PrimaryCurrency>USD</PrimaryCurrency>
        <PrimaryCurrencyDisplayLocaleFormat>
        </PrimaryCurrencyDisplayLocaleFormat>
        <Date>5/19/2011</Date>
        <Time>10:34 AM</Time>
        <SkinID>1</SkinID>
        <AffiliateID>0</AffiliateID>
        <IPAddress>69.39.30.34</IPAddress>
        <QueryStringRAW>
        </QueryStringRAW>
        <UseStaticLinks>
        </UseStaticLinks>
        <PageName>p-2-series-ii-security-console-8-wide.aspx</PageName>
        <FullPageName>/p-2-series-ii-security-console-8-wide.aspx</FullPageName>
        <XmlPackageName>product.configurable-tabbedvariantddown.xml.config</XmlPackageName>
        <StoreUrl>http://aspdotnetstorefront.tuffyproducts.com/</StoreUrl>
        <CurrentDateTime>Thu, 19 May 2011 17:34:52 GMT</CurrentDateTime>
        <CustomerIsRegistered>true</CustomerIsRegistered>
        <StoreID>1</StoreID>
        <FilterProduct>False</FilterProduct>
        <FilterEntity>False</FilterEntity>
        <FilterTopic>False</FilterTopic>
        <FilterNews>False</FilterNews>
        <RequestedPage>p-2-series-ii-security-console-8-wide.aspx</RequestedPage>
        <RequestedQuerystring>
        </RequestedQuerystring>
      </System>
      <QueryString />
      <Form />
      <Session />
      <Cookies>
        <Referrer>http://aspdotnetstorefront.tuffyproducts.com/c-1-new-featured-products.aspx</Referrer>
        <ASPDNSFGUID>AA074CC623DCAC34BEE24A5893C6CA8C5FDC11EC3659CAB78DE30B3120081870EE676A9F187C68EBAD8BAD1CE81EA83D8AF56BCFE18B7BD74694A521D5B2B2A802756B418D3387191C882F7DB5FDEB5178C1BC65F6C14753FDB0FFBC11ED6DD9A4015E9B42D0E2C48D002E107C10D824339D2E02AF6E98E0A57D7AD73C194D2FEFD9EEE2C355C0E345F4115AE5E4BB2906CB974510F8F028B6107A2A81EF2C71716DF06420BECF5F8FC54E1B5F8F100F2A1D239A</ASPDNSFGUID>
        <SkinID>1</SkinID>
        <LastViewedEntityName>Category</LastViewedEntityName>
        <LastViewedEntityInstanceID>26</LastViewedEntityInstanceID>
        <LastViewedEntityInstanceName>Mounting kits</LastViewedEntityInstanceName>
      </Cookies>
      <ServerVariables>
        <HTTP_HOST>aspdotnetstorefront.tuffyproducts.com</HTTP_HOST>
        <HTTP_USER_AGENT>Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1</HTTP_USER_AGENT>
        <AUTH_TYPE>Forms</AUTH_TYPE>
        <AUTH_USER>3e987a6f-d71e-4ba1-a4fd-bb06af90a750</AUTH_USER>
        <AUTH_PASSWORD>
        </AUTH_PASSWORD>
        <HTTPS>off</HTTPS>
        <LOCAL_ADDR>50.23.156.148</LOCAL_ADDR>
        <PATH_INFO>/p-2-series-ii-security-console-8-wide.aspx</PATH_INFO>
        <PATH_TRANSLATED>C:\HostingSpaces\TuffyProducts\tuffyproducts.com\wwwroot\p-2-series-ii-security-console-8-wide.aspx</PATH_TRANSLATED>
        <SCRIPT_NAME>/p-2-series-ii-security-console-8-wide.aspx</SCRIPT_NAME>
        <SERVER_NAME>aspdotnetstorefront.tuffyproducts.com</SERVER_NAME>
        <SERVER_PORT_SECURE>0</SERVER_PORT_SECURE>
        <HTTP_CLUSTER_HTTPS>
        </HTTP_CLUSTER_HTTPS>
      </ServerVariables>
      <Runtime>
        <IPAddress>69.39.30.34</IPAddress>
        <FilterProduct>False</FilterProduct>
        <CurrencySetting>USD</CurrencySetting>
        <IsAdminSite>False</IsAdminSite>
        <StoreUrl>http://aspdotnetstorefront.tuffyproducts.com/</StoreUrl>
        <FilterNews>False</FilterNews>
        <SkinID>1</SkinID>
        <FilterEntity>False</FilterEntity>
        <PageName>p-2-series-ii-security-console-8-wide.aspx</PageName>
        <IsSuperUser>True</IsSuperUser>
        <StoreID>1</StoreID>
        <CustomerLastName>McGrath</CustomerLastName>
        <PrimaryCurrency>USD</PrimaryCurrency>
        <WebConfigLocaleSetting>en-US</WebConfigLocaleSetting>
        <CurrencyDisplayLocaleFormat>
        </CurrencyDisplayLocaleFormat>
        <VAT.AllowCustomerToChooseSetting>True</VAT.AllowCustomerToChooseSetting>
        <AffiliateID>0</AffiliateID>
        <showproduct>1</showproduct>
        <Time>10:34 AM</Time>
        <FilterTopic>False</FilterTopic>
        <QueryStringRAW>
        </QueryStringRAW>
        <VAT.Enabled>False</VAT.Enabled>
        <CustomerLevelName>
        </CustomerLevelName>
        <FullPageName>/p-2-series-ii-security-console-8-wide.aspx</FullPageName>
        <CustomerLevelID>0</CustomerLevelID>
        <EntityName>Category</EntityName>
        <DefaultVATSetting>1</DefaultVATSetting>
        <SqlServerLocaleSetting>en-US</SqlServerLocaleSetting>
        <CustomerVATSetting>1</CustomerVATSetting>
        <LocaleSetting>en-US</LocaleSetting>
        <IsAdminUser>True</IsAdminUser>
        <CustomerIsRegistered>true</CustomerIsRegistered>
        <Date>5/19/2011</Date>
        <CustomerRoles>Free,Admin,SuperAdmin,NoSubscription,Registered</CustomerRoles>
        <EntityID>1</EntityID>
        <SubscriptionExpiresOn>
        </SubscriptionExpiresOn>
        <CustomerFirstName>Kayla</CustomerFirstName>
        <UseStaticLinks>False</UseStaticLinks>
        <XmlPackageName>product.configurable-tabbedvariantddown.xml.config</XmlPackageName>
        <UseVATSetting>1</UseVATSetting>
        <CustomerFullName>Kayla McGrath</CustomerFullName>
        <PrimaryCurrencyDisplayLocaleFormat>
        </PrimaryCurrencyDisplayLocaleFormat>
        <IsAdminSiteInt>0</IsAdminSiteInt>
      </Runtime>
      <ExtensionElements>
        <ExtensionData>
          <Features>This is where Features would go!!!</Features>
          <Specifications>This is where Specifications would go!!</Specifications>
          <Fits>This is where the Fits section would go!!!</Fits>
          <Mounting>This is where Mounting instructions would go!!!</Mounting>
        </ExtensionData>
      </ExtensionElements>
      <Products>
        <Product>
          <ProductID>2</ProductID>
          <ProductGUID>4196dae7-44b1-4ccf-abfc-f3528dc856c8</ProductGUID>
          <Name>Series II Security Console 8" Wide</Name>
          <Summary>This console features Tuffy's patented locking system, a large lockable storage compartment, and two great drink holders!&lt;br /&gt;
    </Summary>
          <Description>This high security 16-gauge steel console features Tuffy’s patented
    pushbutton latch system. For safety and convenience while operating the
    vehicle, the lid also latches closed without having to be locked. It has
    a spacious compartment for mounting a CD changer, storing tools,
    electronic equipment, cellular phones, and other valuables. Rubber floor
    mat is included; other accessories are available (See Accessories). &lt;br /&gt;
    &lt;hr /&gt;
    &lt;span style="font-style: italic; font-weight: bold;"&gt;FEATURES:&lt;/span&gt; &lt;br /&gt;
    &lt;ul&gt;
        &lt;li&gt;Patented Pry-Guard II locking system with a 1/4” Steel latch which enables the lid to be latched closed without locking
        &lt;/li&gt;
        &lt;li&gt;Patented Anti-twist push button lock system with a 10 tumbler double bitted security key containing built in weather seals
        &lt;/li&gt;
        &lt;li&gt;Padded arm rest for added comfort, Marine grade vinyl
        &lt;/li&gt;
        &lt;li&gt;Weather resistant lid design incorporates an exclusive hinging system with built-in lid stop
        &lt;/li&gt;
        &lt;li&gt;Added security with Pin-Lock hinge design
        &lt;/li&gt;
        &lt;li&gt;Polypropylene seat belt straps
        &lt;/li&gt;
        &lt;li&gt;Durable texture powder coat finish
        &lt;/li&gt;
        &lt;li&gt;Grade 8 mounting hardware provided
        &lt;/li&gt;
        &lt;li&gt;Oversized drink holders with anti-rattle rubber drink fingers
        &lt;/li&gt;
        &lt;li&gt;Convenience storage tray
        &lt;/li&gt;
        &lt;li&gt;Two point welded 1/2” solid steel striker
        &lt;/li&gt;
        &lt;li&gt;Rubber floor mat
        &lt;/li&gt;
        &lt;li&gt;Removable tray &lt;/li&gt;
    &lt;/ul&gt;
    </Description>
          <SEKeywords />
          <SEDescription />
          <SpecTitle />
          <MiscText />
          <SwatchImageMap />
          <IsFeaturedTeaser />
          <FroogleDescription />
          <SETitle>Series II Security Console</SETitle>
          <SENoScript />
          <SEAltText>Series II Security Console</SEAltText>
          <SizeOptionPrompt />
          <ColorOptionPrompt>Color:</ColorOptionPrompt>
          <TextOptionPrompt />
          <ProductTypeID>1</ProductTypeID>
          <TaxClassID>1</TaxClassID>
          <SKU>012</SKU>
          <ManufacturerPartNumber>012</ManufacturerPartNumber>
          <SalesPromptID>1</SalesPromptID>
          <SpecCall />
          <SpecsInline>1</SpecsInline>
          <IsFeatured>0</IsFeatured>
          <XmlPackage>product.configurable-tabbedvariantddown.xml.config</XmlPackage>
          <ColWidth>4</ColWidth>
          <Published>1</Published>
          <Wholesale>0</Wholesale>
          <RequiresRegistration>0</RequiresRegistration>
          <Looks>473</Looks>
          <Notes />
          <QuantityDiscountID>0</QuantityDiscountID>
          <RelatedProducts>1,3,4</RelatedProducts>
          <UpsellProducts />
          <UpsellProductDiscountPercentage>0.0000</UpsellProductDiscountPercentage>
          <RelatedDocuments />
          <TrackInventoryBySizeAndColor>0</TrackInventoryBySizeAndColor>
          <TrackInventoryBySize>0</TrackInventoryBySize>
          <TrackInventoryByColor>0</TrackInventoryByColor>
          <IsAKit>0</IsAKit>
          <ShowInProductBrowser>1</ShowInProductBrowser>
          <IsAPack>0</IsAPack>
          <PackSize>0</PackSize>
          <ShowBuyButton>1</ShowBuyButton>
          <RequiresProducts />
          <HidePriceUntilCart>0</HidePriceUntilCart>
          <IsCalltoOrder>0</IsCalltoOrder>
          <ExcludeFromPriceFeeds>0</ExcludeFromPriceFeeds>
          <RequiresTextOption>0</RequiresTextOption>
          <TextOptionMaxLength>0</TextOptionMaxLength>
          <SEName>series-ii-security-console-8-wide</SEName>
          <ExtensionData>&lt;ExtensionData&gt;
         &lt;Features&gt;This is where Features would go!!!&lt;/Features&gt;
         &lt;Specifications&gt;This is where Specifications would go!!&lt;/Specifications&gt;
         &lt;Fits&gt;This is where the Fits section would go!!!&lt;/Fits&gt;
         &lt;Mounting&gt;This is where Mounting instructions would go!!!&lt;/Mounting&gt;
    &lt;/ExtensionData&gt;</ExtensionData>
          <ExtensionData2 />
          <ExtensionData3 />
          <ExtensionData4 />
          <ExtensionData5 />
          <ContentsBGColor />
          <PageBGColor />
          <GraphicsColor />
          <ImageFilenameOverride />
          <IsImport>0</IsImport>
          <IsSystem>0</IsSystem>
          <Deleted>0</Deleted>
          <CreatedOn>4/6/2011 3:07:09 PM</CreatedOn>
          <PageSize>20</PageSize>
          <WarehouseLocation />
          <AvailableStartDate>4/6/2011 12:00:00 AM</AvailableStartDate>
          <AvailableStopDate />
          <GoogleCheckoutAllowed>1</GoogleCheckoutAllowed>
          <SkinID>0</SkinID>
          <TemplateName />
          <VariantID>5</VariantID>
          <VariantName />
          <Price>227.0000</Price>
          <VariantDescription>&lt;span style="font-style: italic; font-weight: bold;"&gt;SPECIFICATIONS:&lt;/span&gt; &lt;br /&gt;
    Part #012, Colors: 01, 02, 03, 04, 05 &lt;br /&gt;
    Exterior Dimensions: 24”L (includes cup holder), 8”W, 18 1/2”H (includes 4” mounting bracket), 3 1/2” Holes for drinks &lt;br /&gt;
    Interior Dimensions: (Length is Tapered) 15 1/2”L (top), 20”L (bottom), 7 1/2”W, 12”H &lt;br /&gt;
    </VariantDescription>
          <SalePrice>0.0000</SalePrice>
          <SkuSuffix />
          <Dimensions />
          <Weight />
          <Points>0</Points>
          <Inventory>100000</Inventory>
          <VariantImageFilenameOverride />
          <isdefault>1</isdefault>
          <CustomerEntersPrice>0</CustomerEntersPrice>
          <Colors>Black,Light Grey,Charcoal Grey,Spice,Camel</Colors>
          <Sizes />
          <SalesPromptName>On Sale For</SalesPromptName>
          <ExtendedPrice>0.0000</ExtendedPrice>
        </Product>
      </Products>
      <Products2>
        <Product>
          <XML_F52E2B61-18A1-11d1-B105-00805F49916B>&lt;Product&gt;&lt;ProductID&gt;2&lt;/ProductID&gt;&lt;ExtensionData&gt;&lt;ExtensionData&gt;&lt;Features&gt;This is where Features would go!!!&lt;/Features&gt;&lt;Specifications&gt;This is where Specifications would go!!&lt;/Specifications&gt;&lt;Fits&gt;This is where the Fits section would go!!!&lt;/Fits&gt;&lt;Mounting&gt;This is where Mounting instructions would go!!!&lt;/Mounting&gt;&lt;/ExtensionData&gt;&lt;/ExtensionData&gt;&lt;/Product&gt;</XML_F52E2B61-18A1-11d1-B105-00805F49916B>
        </Product>
      </Products2>
      <EntityHelpers>
        <Category>
          <Entity>
            <EntityID>17</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Categories</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>categories</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>1</EntityID>
              <XmlPackage>entity.gridwithprices.xml.config</XmlPackage>
              <Name>New Featured Products</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>new-featured-products</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>2</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>On Sale Products</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>2</DisplayOrder>
              <Published>1</Published>
              <SEName>on-sale-products</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>3</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Replacement Locks &amp; Keys</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>3</DisplayOrder>
              <Published>1</Published>
              <SEName>replacement-locks-keys</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>4</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>All Tuffy Products</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>4</DisplayOrder>
              <Published>1</Published>
              <SEName>all-tuffy-products</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>5</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Accessories</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>5</DisplayOrder>
              <Published>1</Published>
              <SEName>accessories</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>6</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Cargo Drawers</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>6</DisplayOrder>
              <Published>1</Published>
              <SEName>cargo-drawers</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>7</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Consoles</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>7</DisplayOrder>
              <Published>1</Published>
              <SEName>consoles</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>8</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Door, Hood, Tailgate, and Bolt Security</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>8</DisplayOrder>
              <Published>1</Published>
              <SEName>door-hood-tailgate-and-bolt-security</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>9</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Underseat Drawers</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>9</DisplayOrder>
              <Published>1</Published>
              <SEName>underseat-drawers</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>10</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Glove Boxes</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>10</DisplayOrder>
              <Published>1</Published>
              <SEName>glove-boxes</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>11</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Lockboxes</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>11</DisplayOrder>
              <Published>1</Published>
              <SEName>lockboxes</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>12</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Rood Storage &amp; Accessories</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>12</DisplayOrder>
              <Published>1</Published>
              <SEName>rood-storage-accessories</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>13</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Speaker &amp; Wheel Well Storage</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>13</DisplayOrder>
              <Published>1</Published>
              <SEName>speaker-wheel-well-storage</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>14</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Truck Bed Security</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>14</DisplayOrder>
              <Published>1</Published>
              <SEName>truck-bed-security</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>15</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Trunks</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>17</ParentEntityID>
              <Description />
              <DisplayOrder>15</DisplayOrder>
              <Published>1</Published>
              <SEName>trunks</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
        </Category>
        <Section>
          <Entity>
            <EntityID>1</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>AM General</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>am-general</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>3</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>H1 Hummer</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>1</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>h1-hummer</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>43</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1996 - 2003</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>3</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1996-2003</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
          </Entity>
          <Entity>
            <EntityID>2</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Chevy</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>chevy</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>5</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>K5 Blazer</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>2</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>k5-blazer</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>4</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>S-10 Blazer</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>2</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>s-10-blazer</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>6</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Suburban</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>2</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>suburban</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>7</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Tahoe</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>2</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>tahoe</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>8</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Dodge</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>dodge</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>9</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Durango</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>8</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>durango</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>13</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Ford</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>ford</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>10</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Bronco</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>13</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>bronco</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>44</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1966 - 1977</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>10</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1966-1977</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>45</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1978 - 1996</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>10</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1978-1996</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>11</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Escape</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>13</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>escape</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>12</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Expedition</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>13</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>expedition</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>14</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Explorer</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>13</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>explorer</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>16</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Honda</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>honda</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>17</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Element</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>16</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>element</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>46</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2003 - 2008</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>17</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2003-2008</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
          </Entity>
          <Entity>
            <EntityID>18</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>International</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>international</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>19</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>CXT</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>18</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cxt</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>20</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Scout</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>18</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>scout</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>21</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Scout II</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>18</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>scout-ii</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>22</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Jeep</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>jeep</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>30</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Cherokee SJ</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cherokee-sj</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>31</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Cherokee XJ</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cherokee-xj</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>61</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1984 - 1996</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>31</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1984-1996</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>62</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1997 - 1999</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>31</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1997-1999</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>63</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2000 - 2001</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>31</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2000-2001</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>23</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>CJ-5</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cj-5</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>47</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1976 - 1983</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>23</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1976-1983</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>48</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>up to 1975</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>23</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>up-to-1975</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>24</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>CJ-7</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>cj-7</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>49</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1976 - 1986</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>24</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1976-1986</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>28</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>JK Unlimited 4-Door</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>jk-unlimited-4-door</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>57</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2007 - 2010</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>28</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2007-2010</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>58</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2011 - Current</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>28</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2011-current</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>29</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>JK Wrangler 2-Door</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>jk-wrangler-2-door</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>59</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2007 - 2010</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>29</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2007-2010</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>60</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2011 - Current</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>29</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2011-current</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>27</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>LJ Unlimited</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>lj-unlimited</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>56</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2004 - 2006</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>27</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2004-2006</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>32</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Other</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>other</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>26</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>TJ Wrangler</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>tj-wrangler</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>53</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1997 - 2000</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>26</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1997-2000</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>54</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2001 - 2002</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>26</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2001-2002</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>55</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2003 - 2006</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>26</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2003-2006</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>25</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>YJ Wrangler</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>22</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>yj-wrangler</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>50</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1987 - 1990</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>25</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1987-1990</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>51</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1991</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>25</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1991</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>52</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1992 - 1995</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>25</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1992-1995</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
          </Entity>
          <Entity>
            <EntityID>33</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Land Rover</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>land-rover</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>34</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Defender 110</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>33</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>defender-110</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>35</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Defender 90</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>33</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>defender-90</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>36</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Suzuki</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>suzuki</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>37</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Samurai</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>36</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>samurai</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>38</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Toyota</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>toyota</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
            <Entity>
              <EntityID>39</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>FJ-40, FJ-60</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>38</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>fj-40-fj-60</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>66</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1/1979 - 7/1980</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>39</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>11979-71980</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>64</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1964 - 1972</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>39</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1964-1972</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>65</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1973 - 1978</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>39</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1973-1978</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>67</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>1981 - 1984</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>39</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>1981-1984</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>40</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>FJ-Cruiser</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>38</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>fj-cruiser</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>68</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2007 - Current</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>40</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2007-current</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>41</EntityID>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Name>Tacoma</Name>
              <ColWidth>4</ColWidth>
              <ParentEntityID>38</ParentEntityID>
              <Description />
              <DisplayOrder>1</DisplayOrder>
              <Published>1</Published>
              <SEName>tacoma</SEName>
              <PageSize>20</PageSize>
              <SETitle />
              <SETitle />
              <SEDescription />
              <SEKeywords />
              <SENoScript />
              <TemplateName />
              <Entity>
                <EntityID>69</EntityID>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Name>2005 - Current</Name>
                <ColWidth>4</ColWidth>
                <ParentEntityID>41</ParentEntityID>
                <Description />
                <DisplayOrder>1</DisplayOrder>
                <Published>1</Published>
                <SEName>2005-current</SEName>
                <PageSize>20</PageSize>
                <SETitle />
                <SETitle />
                <SEDescription />
                <SEKeywords />
                <SENoScript />
                <TemplateName />
              </Entity>
            </Entity>
          </Entity>
          <Entity>
            <EntityID>42</EntityID>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Name>Trucks, Vans, SUVs</Name>
            <ColWidth>4</ColWidth>
            <ParentEntityID>0</ParentEntityID>
            <Description />
            <DisplayOrder>1</DisplayOrder>
            <Published>1</Published>
            <SEName>trucks-vans-suvs</SEName>
            <PageSize>20</PageSize>
            <SETitle />
            <SETitle />
            <SEDescription />
            <SEKeywords />
            <SENoScript />
            <TemplateName />
          </Entity>
        </Section>
        <Manufacturer />
        <Library />
        <Distributor />
        <Genre />
        <Vector />
      </EntityHelpers>
    </root>

  16. #16
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    OK - so you need this :-


    C#/VB.NET Code:
    <xsl:value-of select="/root/ExtensionElements/ExtensionData/Features" disable-output-escaping="yes" />  
    <
    xsl:value-of select="/root/ExtensionElements/ExtensionData/Specifications" disable-output-escaping="yes" />  
    <
    xsl:value-of select="/root/ExtensionElements/ExtensionData/Fits" disable-output-escaping="yes" />  
    <
    xsl:value-of select="/root/ExtensionElements/ExtensionData/Mounting" disable-output-escaping="yes" /> 

    TTFN

    BFG

  17. #17
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    This is what I currently have in Extension Data:
    <ExtensionData>
    <Features>This is where Features would go!!!</Features>
    <Specifications>This is where Specifications would go!!</Specifications>
    <Fits>This is where the Fits section would go!!!</Fits>
    <Mounting>This is where Mounting instructions would go!!!</Mounting>
    </ExtensionData>

    This is how I have it called currently in my xml package:
    <xsl:value-of select="/root/ExtensionElements/Extension/ExtensionData/Features" disable-output-escaping="yes" />

    This is what I have in my xml package right after the 'notice that must remain intact':
    <query name="ExtensionElements" rowElementName="Extension" retType="xml">
    <sql>
    <![CDATA[
    select CONVERT(xml, ExtensionData) as ExtensionData FROM Product WHERE ProductID = @ProductID;
    ]]>
    </sql>
    <queryparam paramname="@ProductID" paramtype="request" requestparamname="ProductID" sqlDataType="int" defvalue="0" validationpattern="^\d{1,10}$" />
    </query>



    Sorry for the mixup....

  18. #18
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    Can you try copying & pasting my last code exactly?

  19. #19
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    Yes... that's what I did. That's what's in there now. Just forget about what I said about playing around with it... it's all what you gave me.

  20. #20
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    It really should work, do you want to send me the package & I'll take a look?

    johno at johnoandsarah dot com


    TTFN

    BFG

  21. #21
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    Would anyone happen to know how to format it?
    I need some line breaks, text formatting, and unordered lists....
    When I put html in there it breaks it.

    Thanks

  22. #22
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    So I figured out a way to format it.. probably not the most efficient way to do things, but it works. Anyway, this is causing a small problem that I can't seem to fudge my way through...

    This is what I have in my extension data:
    Code:
    <ExtensionData>
    <Features>Features:</Features>
    <F1>Patented Pry-Guard II locking system with a 1/4” Steel latch which enables the lid to be latched closed without locking</F1>
    <F2>Patented Anti-twist push button lock system with a 10 tumbler double bitted security key containing built in weather seals</F2>
    <F3>Padded arm rest for added comfort, Marine grade vinyl</F3>
    <F4>Weather resistant lid design incorporates an exclusive hinging system with built-in lid stop</F4>
    <F5>Added security with Pin-Lock hinge design</F5>
    <F6>Polypropylene seat belt straps</F6>
    <F7>Durable texture powder coat finish</F7>
    <F8>Grade 8 mounting hardware provided</F8>
    <F9>Oversized drink holders with anti-rattle rubber drink fingers</F9>
    <F10>Convenience storage tray</F10>
    <F11>Two point welded 1/2” solid steel striker</F11>
    <F12>Rubber floor mat</F12>
    <F13>Removable tray</F13>
    <F15></F15>
    <F16></F16>
    <F17></F17>
    <F18></F18>
    <F19></F19>
    <F20></F20>
    <F21></F21>
    <F22></F22>
    <F23></F23>
    <F24></F24>
    <F25></F25>
    <Specifications>Specifications:</Specifications>
    <S1>Exterior Dimensions: 24”L (includes cup holder), 8”W, 18 1/2”H (includes 4” mounting bracket), 3 1/2” Holes for drinks </S1>
    <S2>Interior Dimensions: (Length is Tapered) 15 1/2”L (top), 20”L (bottom), 7 1/2”W, 12”H </S2>
    <S3></S3>
    <S4></S4>
    <Fits>Fits:</Fits>
    <V1>Wrangler YJ '91 - '95</V1>
    <V2>CJ-5 up to '75</V2>
    <V3>Jeep SJ</V3>
    <V4>Bronco '66 - '77 (mounting kit required)</V4>
    <V5>Other vehicles with space</V5>
    <V6></V6>
    <V7></V7>
    <V8></V8>
    <V9></V9>
    <V10></V10>
    <Mounting>Mounting: Mounts through the floor, drilling required (3) holes.</Mounting>
    </ExtensionData>
    Here is how I have it in the xml package:
    Code:
    <div id="features">
    									
    <xsl:value-of select="/root/ExtensionElements/ExtensionData/Features" disable-output-escaping="yes"/></span>
    <ul>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F1" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F2" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F3" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F4" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F5" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F6" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F7" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F8" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F9" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F10" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F11" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F12" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F13" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F14" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F15" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F16" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F17" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F18" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F19" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F20" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F21" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F22" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F23" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F24" disable-output-escaping="yes"/></li>
    <li><xsl:value-of select="/root/ExtensionElements/ExtensionData/F25" disable-output-escaping="yes"/></li>	
    </ul>
    </div>
    This is how it shows up:


    I have to have the xml package call 25 features but some products have less than that....

    Is there any way I can have the xml package check if there is anything in the thing I'm trying to get before displaying it?

  23. #23
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    CDATA is your friend.

    Modify your extensiondata to look like this :-


    C#/VB.NET Code:
    <ExtensionData>
    <
    Features>
    <![
    CDATA[
    Features:<br />
    <
    ul>
    <
    li>Patented Pry-Guard II locking system with a 1/4&#8221; Steel latch which enables the lid to be latched closed without locking</li>
    <li>Patented Anti-twist push button lock system with a 10 tumbler double bitted security key containing built in weather seals</li>
    <
    li>Padded arm rest for added comfortMarine grade vinyl</li>
    <
    li>Weather resistant lid design incorporates an exclusive hinging system with built-in lid stop</li>
    <
    li>Added security with Pin-Lock hinge design</li>
    <
    li>Polypropylene seat belt straps</li>
    <
    li>Durable texture powder coat finish</li>
    <
    li>Grade 8 mounting hardware provided</li>
    <
    li>Oversized drink holders with anti-rattle rubber drink fingers</li>
    <
    li>Convenience storage tray</li>
    <
    li>Two point welded 1/2&#8221; solid steel striker</li>
    <li>Rubber floor mat</li>
    <
    li>Removable tray</li>
    </
    ul>
    ]]>
    </
    Features>
    <
    Specifications>Specifications:</Specifications>
    <
    S1>Exterior Dimensions24&#8221;L (includes cup holder), 8”W, 18 1/2”H (includes 4” mounting bracket), 3 1/2” Holes for drinks </S1>
    <S2>Interior Dimensions: (Length is Tapered15 1/2&#8221;L (top), 20”L (bottom), 7 1/2”W, 12”H </S2>
    <S3></S3>
    <
    S4></S4>
    <
    Fits>Fits:</Fits>
    <
    V1>Wrangler YJ '91 - '95</V1>
    <
    V2>CJ-5 up to '75</V2>
    <V3>Jeep SJ</V3>
    <V4>Bronco '
    66 '77 (mounting kit required)</V4>
    <V5>Other vehicles with space</V5>
    <V6></V6>
    <V7></V7>
    <V8></V8>
    <V9></V9>
    <V10></V10>
    <Mounting>Mounting: Mounts through the floor, drilling required (3) holes.</Mounting>
    </ExtensionData> 



    Basically, all I've done is the following :-


    <Features><![CDATA[ replace this green text with valid xhtml ]]></Features>



    TTFN

    BFG
    Last edited by BFG 9000; 05-26-2011 at 09:06 AM. Reason: Added link to w3schools

  24. #24
    tuffy is offline Member
    Join Date
    Nov 2008
    Posts
    76

    Default

    Thank you!!! That's so much easier.
    I don't know why I didn't think of that... I had just read all about cdata. I owe you... again! Maybe they should include that in the manual for the noobs like me.

  25. #25
    hotdog is offline Member
    Join Date
    Jun 2011
    Location
    Daytona Beach, FL
    Posts
    46

    Thumbs up Thank you

    I was having a similar problem, but your examples helped me through it. Thanks again.

  26. #26
    jballard is offline Junior Member
    Join Date
    Mar 2012
    Posts
    1

    Default Displaying Extension Data On A Category Page

    Thanks for the great examples. Have any of you tried to display extension data in a grid format on a category page. The products I would like to display have basically no unique descriptions other then the price and several unique product fields that I was hoping to store in the Extension data field.

    Any suggestions on how to write the query and call to display this data for comparison purpose at the category level by modifying a category xml package like: entity.tableexpanded2.xml.config for example.


  27. #27
    btappan2 is offline Member
    Join Date
    Apr 2012
    Posts
    43

    Default

    I have each spec in its own node for search filtering purposes, but was wondering if there was some code that could be used INSTEAD of the code below, that would display everything in the extensiondata field, but still be formatted instead of all run together with no spaces? I don't want to have to modify the XML packages, every time I add nodes.

    Code:
    <xsl:value-of select="/root/ExtensionElements/Product/ExtensionData/WeddingDate" disable-output-escaping="yes" />
    <xsl:value-of select="/root/ExtensionElements/Product/ExtensionData/SomeOtherNode" disable-output-escaping="yes" />

  28. #28
    btappan2 is offline Member
    Join Date
    Apr 2012
    Posts
    43

    Default

    I have problems with this query not playing nice with some exension data I have that has the "&" symbol in it like "Compatible with series I & II". It works fine for products without the "&" symbol. Any way to make it work with it? I am using this query suggested by BFG 9000:

    Code:
     <query name="ExtensionElements" rowElementName="Extension" retType="xml"> 
        <sql> 
          <![CDATA[ 
                    select CONVERT(xml, ExtensionData) as ExtensionData FROM Product WHERE ProductID = @ProductID; 
                ]]> 
        </sql> 
        <queryparam paramname="@ProductID" paramtype="request" requestparamname="ProductID" sqlDataType="int" defvalue="0"   validationpattern="^\d{1,10}$" /> 
      </query>