an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Development > General Programming > SKU in Product Summary Grid
Last Post 4/12/2010 12:43:10 PM By Bahram. 3 replies.
1/2/2009 2:35:30 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
SKU in Product Summary Grid
I trid to Add SKU using %%SKU%% in product Summary Grid HTML but it wont shows th values.
1/2/2009 3:11:26 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: SKU in Product Summary Grid
Check web\store\productsummary.ascx.cs for the available tokens. I don't think there is a token for SKU. But you can easily extend to have SKU token.
 
1) Create web\store\ProductSummary\SKU.ascx
2) Add the following code to productsummary.ascx.cs
                case "SKU":
                    c = LoadAndBindControl("/Store/ProductSummary/SKU.ascx");
                    break;
 
DotShoppingCart Staff
1/23/2009 2:20:56 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: SKU in Product Summary Grid
What will be the code in SKU.ascx
 
4/12/2010 12:43:10 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: SKU in Product Summary Grid
_