<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>AspDotNetStorefront Community | ASP.NET eCommerce Shoppingcart Software - AspDotNetStorefront ML</title>
		<link>http://forums.aspdotnetstorefront.com</link>
		<description />
		<language>en</language>
		<lastBuildDate>Tue, 07 Sep 2010 07:58:01 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.aspdotnetstorefront.com/images/approx/misc/rss.jpg</url>
			<title>AspDotNetStorefront Community | ASP.NET eCommerce Shoppingcart Software - AspDotNetStorefront ML</title>
			<link>http://forums.aspdotnetstorefront.com</link>
		</image>
		<item>
			<title>App_Code error on new site</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=25078&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 17:21:58 GMT</pubDate>
			<description><![CDATA[I am setting up a new V9 site, and encountering the following error: 
 
Compiler Error Message: CS0234: The type or namespace name 'Web' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?) 
 
Source Error: 
 
  
 
Line 11: using System.Security.Permissions; 
Line...]]></description>
			<content:encoded><![CDATA[<div>I am setting up a new V9 site, and encountering the following error:<br />
<br />
Compiler Error Message: CS0234: The type or namespace name 'Web' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)<br />
<br />
Source Error:<br />
<br />
 <br />
<br />
Line 11: using System.Security.Permissions;<br />
Line 12: using System.Security.Principal;<br />
<b>Line 13: using Microsoft.Web.Services3.Security;</b><br />
Line 14: using Microsoft.Web.Services3.Security.Tokens;<br />
Line 15: using AspDotNetStorefrontCommon;<br />
 <br />
<br />
Source File: c:\inetpub\wwwroot\si-sv3781.com\wwwroot\App_Code\ASPDNSFUsernameTokenMa  nager.cs    Line: 13</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>chana</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=25078</guid>
		</item>
		<item>
			<title>Related Product Price</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=25074&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 11:05:10 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm currently working on the related products within my site, but unlike the Upsell XML package, I can not pull in the price and msrp price into my related products section. 
 
I am using AspDotNetStorefront ML 8.0.1.2 and I have looked through these forums applying the instructions given...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm currently working on the related products within my site, but unlike the Upsell XML package, I can not pull in the price and msrp price into my related products section.<br />
<br />
I am using AspDotNetStorefront ML 8.0.1.2 and I have looked through these forums applying the instructions given out by many on here, but still no luck.<br />
<br />
Here is the code I'm using<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				alter PROCEDURE [dbo].[aspdnsf_GetCustomersRelatedProducts]<br />
@CustomerViewID nvarchar(50),<br />
@ProductID int,<br />
@CustomerLevelID int,<br />
@InvFilter int,<br />
@affiliateID int<br />
--WITH ENCRYPTION<br />
AS<br />
SET NOCOUNT ON<br />
<br />
DECLARE<br />
@custlevelcount int,<br />
@CustomerLevelFilteringIsAscending bit,<br />
@FilterProductsByCustomerLevel tinyint,<br />
@relatedprods varchar(8000),<br />
@DynamicProductsEnabled varchar(10),<br />
@DynamicProductsDisplayed int,<br />
@FilterProductsByAffiliate tinyint,<br />
@affiliatecount int,<br />
@AffiliateExists int<br />
<br />
<br />
SELECT @custlevelcount = si.rows from dbo.sysobjects so with (nolock) join dbo.sysindexes si with (nolock) on so.id = si.id where so.id = object_id('ProductCustomerLevel') and si.indid &lt; 2 and type = 'u'<br />
SELECT @FilterProductsByCustomerLevel = case ConfigValue when 'true' then 1 else 0 end FROM dbo.AppConfig with (nolock) WHERE [Name] = 'FilterProductsByCustomerLevel'<br />
SELECT @FilterProductsByAffiliate = case ConfigValue when 'true' then 1 else 0 end FROM dbo.AppConfig with (nolock) WHERE [Name] = 'FilterProductsByAffiliate'<br />
SELECT @affiliatecount = count(*), @AffiliateExists = sum(case when AffiliateID = @affiliateID then 1 else 0 end) from dbo.ProductAffiliate with (nolock) where ProductID = @ProductID<br />
<br />
<br />
SET @CustomerLevelFilteringIsAscending = 0<br />
SELECT @CustomerLevelFilteringIsAscending = case configvalue when 'true' then 1 else 0 end<br />
FROM dbo.appConfig with (nolock)<br />
WHERE name like 'FilterByCustomerLevelIsAscending'<br />
<br />
SELECT @DynamicProductsDisplayed = CAST(ConfigValue AS INT) from AppConfig with (NOLOCK) where Name = 'DynamicRelatedProducts.NumberDisplayed'<br />
SELECT @DynamicProductsEnabled = CASE ConfigValue WHEN 'true' then 1 else 0 end from AppConfig with (NOLOCK) where Name = 'DynamicRelatedProducts.Enabled'<br />
select @relatedprods = replace(cast(relatedproducts as varchar(8000)), ' ', '') from dbo.product with (NOLOCK) where productid = @productid<br />
<br />
--IF(@DynamicProductsEnabled = 1 and @DynamicProductsDisplayed &gt; 0)<br />
BEGIN<br />
SELECT TOP (@DynamicProductsDisplayed) tp.ProductID, tp.ProductGUID, tp.ImageFilenameOverride, tp.SKU, tp.SEAltText, tp.Name, tp.Description,<br />
pv.VariantID,<br />
pv.name VariantName,<br />
pv.Price,<br />
pv.Description VariantDescription,<br />
isnull(pv.SalePrice, 0) SalePrice, isnull(pv.SkuSuffix, '') SkuSuffix,<br />
pv.Dimensions, pv.Weight, isnull(pv.Points, 0) Points, pv.Inventory,<br />
pv.ImageFilenameOverride VariantImageFilenameOverride, pv.isdefault,<br />
sp.name SalesPromptName,<br />
case when pcl.productid is null then 0 else isnull(e.Price, 0) end ExtendedPrice<br />
FROM Product tp with (NOLOCK)<br />
join dbo.productvariant pv with (NOLOCK) on tp.ProductID = pv.ProductID<br />
join dbo.SalesPrompt sp with (NOLOCK) on tp.SalesPromptID = sp.SalesPromptID<br />
left join dbo.ExtendedPrice e with (NOLOCK) on pv.VariantID=e.VariantID and e.CustomerLevelID = @CustomerLevelID<br />
left join dbo.productcustomerlevel pcl with (nolock) on tp.productid = pcl.productid and @FilterProductsByCustomerLevel = 1<br />
JOIN<br />
(<br />
SELECT p.ProductID, p.ProductGUID, p.ImageFilenameOverride, p.SKU, p.SEAltText, p.Name, p.Description,<br />
pv.VariantID,<br />
pv.name VariantName,<br />
pv.Price,<br />
pv.Description VariantDescription,<br />
isnull(pv.SalePrice, 0) SalePrice, isnull(pv.SkuSuffix, '') SkuSuffix,<br />
pv.Dimensions, pv.Weight, isnull(pv.Points, 0) Points, pv.Inventory,<br />
pv.ImageFilenameOverride VariantImageFilenameOverride, pv.isdefault,<br />
sp.name SalesPromptName,<br />
case when pcl.productid is null then 0 else isnull(e.Price, 0) end ExtendedPrice<br />
<br />
from dbo.product p with (nolock)<br />
join dbo.productvariant pv with (NOLOCK) on p.ProductID = pv.ProductID<br />
join dbo.SalesPrompt sp with (NOLOCK) on p.SalesPromptID = sp.SalesPromptID<br />
left join dbo.ExtendedPrice e with (NOLOCK) on pv.VariantID=e.VariantID and e.CustomerLevelID = @CustomerLevelID<br />
join dbo.split(@relatedprods, ',') rp on p.productid = cast(rp.items as int)<br />
left join dbo.productcustomerlevel pcl with (nolock) on p.productid = pcl.productid and @FilterProductsByCustomerLevel = 1<br />
join (select p.ProductID<br />
from dbo.product p with (nolock)<br />
join dbo.split(@relatedprods, ',') rp on p.productid = cast(rp.items as int)<br />
join (select ProductID, sum(Inventory) Inventory from dbo.productvariant with (nolock) group by ProductID) pv on p.ProductID = pv.ProductID<br />
left join (select ProductID, sum(quan) inventory from dbo.inventory i1 with (nolock) join dbo.productvariant pv1 with (nolock) on pv1.variantid = i1.variantid join dbo.split(@relatedprods, ',') rp1 on pv1.productid = cast(rp1.items as int) group by pv1.productid) i on i.productid = p.productid<br />
where case p.TrackInventoryBySizeAndColor when 1 then isnull(i.inventory, 0) else pv.inventory end &gt;= @InvFilter<br />
) tp on p.productid = tp.productid<br />
where p.published = 1 and p.deleted = 0 and p.productid != @productid<br />
and PV.published = 1 and PV.deleted = 0<br />
and GETDATE() BETWEEN ISNULL(AvailableStartDate, '1/1/1900') AND ISNULL(AvailableStopDate, '1/1/2999')<br />
and case<br />
when @FilterProductsByCustomerLevel = 0 then 1<br />
when @CustomerLevelFilteringIsAscending = 1 and pcl.CustomerLevelID &lt;= @CustomerLevelID or pcl.CustomerLevelID is null then 1<br />
when @CustomerLevelID=0 and pcl.CustomerLevelID is null then 1<br />
when @CustomerLevelID is null or @custlevelcount = 0 then 1<br />
when pcl.CustomerLevelID = @CustomerLevelID or pcl.CustomerLevelID is null then 1<br />
else 0<br />
end = 1<br />
UNION ALL<br />
SELECT pr.ProductID, pr.ProductGUID, pr.ImageFilenameOverride, pr.SKU, pr.SEAltText, pr.Name, pr.Description,<br />
pv.VariantID,<br />
pv.name VariantName,<br />
pv.Price,<br />
pv.Description VariantDescription,<br />
isnull(pv.SalePrice, 0) SalePrice, isnull(SkuSuffix, '') SkuSuffix,<br />
pv.Dimensions, pv.Weight, isnull(pv.Points, 0) Points, pv.Inventory,<br />
pv.ImageFilenameOverride VariantImageFilenameOverride, pv.isdefault,<br />
sp.name SalesPromptName,<br />
case when pcl.productid is null then 0 else isnull(e.Price, 0) end ExtendedPrice<br />
<br />
FROM Product pr WITH (NOLOCK)<br />
join dbo.productvariant pv with (NOLOCK) on pr.ProductID = pv.ProductID<br />
join dbo.SalesPrompt sp with (NOLOCK) on pr.SalesPromptID = sp.SalesPromptID<br />
left join dbo.ExtendedPrice e with (NOLOCK) on pv.VariantID=e.VariantID and e.CustomerLevelID = @CustomerLevelID<br />
left join dbo.productcustomerlevel pcl with (nolock) on pr.productid = pcl.productid and @FilterProductsByCustomerLevel = 1<br />
WHERE pr.ProductID in (<br />
SELECT TOP 100 PERCENT p.ProductID FROM Product p with (NOLOCK)<br />
JOIN<br />
(<br />
SELECT ProductID FROM ProductView with (NOLOCK) WHERE CustomerViewID<br />
IN<br />
(<br />
SELECT CustomerViewID FROM ProductView with (NOLOCK)<br />
WHERE ProductID = @ProductID AND CustomerViewID &lt;&gt; @CustomerViewID<br />
)<br />
AND ProductID &lt;&gt; @ProductID<br />
AND ProductID NOT<br />
IN<br />
(<br />
select ProductID<br />
from product with (NOLOCK)<br />
join split(@relatedprods, ',') rp on productid = cast(rp.items as int)<br />
group by ProductID<br />
)<br />
) a on p.ProductID = a.ProductID<br />
LEFT JOIN dbo.productcustomerlevel pcl with (NOLOCK) on p.productid = pcl.productid and @FilterProductsByCustomerLevel = 1<br />
left join dbo.ProductAffiliate pa with (nolock) on p.ProductID = pa.ProductID<br />
WHERE<br />
pr.Published = 1 AND pr.Deleted = 0 and PV.published = 1 and PV.deleted = 0<br />
and GETDATE() BETWEEN ISNULL(AvailableStartDate, '1/1/1900') AND ISNULL(AvailableStopDate, '1/1/2999')<br />
and case<br />
when @FilterProductsByCustomerLevel = 0 then 1<br />
when @CustomerLevelFilteringIsAscending = 1 and pcl.CustomerLevelID &lt;= @CustomerLevelID or pcl.CustomerLevelID is null then 1<br />
when @CustomerLevelID=0 and pcl.CustomerLevelID is null then 1<br />
when @CustomerLevelID is null or @custlevelcount = 0 then 1<br />
when pcl.CustomerLevelID = @CustomerLevelID or pcl.CustomerLevelID is null then 1<br />
else 0<br />
end = 1<br />
and (pa.AffiliateID = @affiliateID or pa.AffiliateID is null or @affiliatecount = 0 or @FilterProductsByAffiliate = 0)<br />
group by p.ProductID<br />
order by COUNT(*) desc<br />
)<br />
)prd on tp.ProductID = prd.ProductID<br />
<br />
<br />
END<br />
<br />
IF(@DynamicProductsEnabled = 0 and @DynamicProductsDisplayed &gt; 0)<br />
BEGIN<br />
select TOP (@DynamicProductsDisplayed) p.ProductID, p.ProductGUID, p.ImageFilenameOverride, p.SKU, p.SEAltText, p.Name, p.Description,<br />
/* mb 11/09 */<br />
pv.VariantID,<br />
pv.name<br />
VariantName,<br />
pv.Price,<br />
pv.Description VariantDescription,<br />
isnull(pv.SalePrice, 0) SalePrice, isnull(SkuSuffix, '') SkuSuffix,<br />
pv.Dimensions, pv.Weight, isnull(pv.Points, 0) Points, pv.Inventory,<br />
pv.ImageFilenameOverride VariantImageFilenameOverride, pv.isdefault,<br />
sp.name SalesPromptName,<br />
case when pcl.productid is null then 0 else isnull(e.Price, 0) end ExtendedPrice<br />
from dbo.product p with (nolock)<br />
join dbo.productvariant pv with (NOLOCK) on p.ProductID = pv.ProductID<br />
join dbo.SalesPrompt sp with (NOLOCK) on p.SalesPromptID = sp.SalesPromptID<br />
left join dbo.ExtendedPrice e with (NOLOCK) on pv.VariantID=e.VariantID and e.CustomerLevelID = @CustomerLevelID<br />
left join (select variantid, sum(quan) inventory from inventory group by variantid) i on pv.variantid = i.variantid<br />
join dbo.split(@relatedprods, ',') rp on p.productid = cast(rp.items as int)<br />
left join dbo.productcustomerlevel pcl with (nolock) on p.productid = pcl.productid and @FilterProductsByCustomerLevel = 1<br />
join (select p.ProductID<br />
from dbo.product p with (nolock)<br />
join dbo.split(@relatedprods, ',') rp on p.productid = cast(rp.items as int)<br />
join (select ProductID, sum(Inventory) Inventory from dbo.productvariant with (nolock) group by ProductID) pv on p.ProductID = pv.ProductID<br />
left join (select ProductID, sum(quan) inventory from dbo.inventory i1 with (nolock) join dbo.productvariant pv1 with (nolock) on pv1.variantid = i1.variantid join dbo.split(@relatedprods, ',') rp1 on pv1.productid = cast(rp1.items as int) group by pv1.productid) i on i.productid = p.productid<br />
where case p.TrackInventoryBySizeAndColor when 1 then isnull(i.inventory, 0) else pv.inventory end &gt;= @InvFilter<br />
) tp on p.productid = tp.productid<br />
where p.published = 1 and p.deleted = 0 and p.productid != @productid<br />
and pv.published = 1 and pv.deleted = 0<br />
and GETDATE() BETWEEN ISNULL(AvailableStartDate, '1/1/1900') AND ISNULL(AvailableStopDate, '1/1/2999')<br />
and case<br />
when @FilterProductsByCustomerLevel = 0 then 1<br />
when @CustomerLevelFilteringIsAscending = 1 and pcl.CustomerLevelID &lt;= @CustomerLevelID or pcl.CustomerLevelID is null then 1<br />
when @CustomerLevelID=0 and pcl.CustomerLevelID is null then 1<br />
when @CustomerLevelID is null or @custlevelcount = 0 then 1<br />
when pcl.CustomerLevelID = @CustomerLevelID or pcl.CustomerLevelID is null then 1<br />
else 0<br />
end = 1				 
			
			<hr />
		</td>
	</tr>
	</table>
</div>And this is the error I am receiving:<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				Exception=Incorrect syntax near the keyword 'PROCEDURE'. Must declare the scalar variable &quot;@CustomerViewID&quot;. Incorrect syntax near ')'. Incorrect syntax near the keyword 'with'. If this statement is a common table expression or an xmlnamespaces clause, the previous statement must be terminated with a semicolon. Incorrect syntax near the keyword 'with'. If this statement is a common table expression or an xmlnamespaces clause, the previous statement must be terminated with a semicolon. Incorrect syntax near '1'.
			
			<hr />
		</td>
	</tr>
	</table>
</div>Any help would be greatly appreciated as this is driving me nuts at the moment!<br />
<br />
Many Thanks.</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>xxandyxexx</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=25074</guid>
		</item>
		<item>
			<title>Skin Required for website</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24998&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 18:11:36 GMT</pubDate>
			<description>Hi, 
 
Im looking for similar skin (www.arenaflowers.com) for my website (version 9.0.1.3) 
 
IF any one interested to do this job please post your quote and email id 
 
 
Regards 
Devaki</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Im looking for similar skin (<a href="http://www.arenaflowers.com" target="_blank">www.arenaflowers.com</a>) for my website (version 9.0.1.3)<br />
<br />
IF any one interested to do this job please post your quote and email id<br />
<br />
<br />
Regards<br />
Devaki</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>dev.folks</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24998</guid>
		</item>
		<item>
			<title>Critique my site</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24936&amp;goto=newpost</link>
			<pubDate>Sat, 04 Sep 2010 16:56:26 GMT</pubDate>
			<description>www.soycandledepot.com (http://www.soycandledepot.com) 
 
Opinions, recommendations, bashings…all are welcome.  I’m looking for honest feedback on our site’s design, organization, graphics, layout, verbiage, etc.  
 
Thanks for your time.</description>
			<content:encoded><![CDATA[<div><a href="http://www.soycandledepot.com" target="_blank">www.soycandledepot.com</a><br />
<br />
Opinions, recommendations, bashings…all are welcome.  I’m looking for honest feedback on our site’s design, organization, graphics, layout, verbiage, etc. <br />
<br />
Thanks for your time.</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>hunter0781</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24936</guid>
		</item>
		<item>
			<title>Visual studio and IIS</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24932&amp;goto=newpost</link>
			<pubDate>Sat, 04 Sep 2010 14:13:39 GMT</pubDate>
			<description>Hi, is there som documentation to setup IIS and VS2008 correctly to use with the sourcecode? I have tried it on Windows 7 (IIS 7) and XP (IIS 6) but i cant get the default.aspx or template.master to work/show correct in design mode. I have enabled parent path and that did help a litle, but the...</description>
			<content:encoded><![CDATA[<div>Hi, is there som documentation to setup IIS and VS2008 correctly to use with the sourcecode? I have tried it on Windows 7 (IIS 7) and XP (IIS 6) but i cant get the default.aspx or template.master to work/show correct in design mode. I have enabled parent path and that did help a litle, but the design mode still dont show correct. I can compile and everything, but in the documentation its says that its possible to see default.aspx layout in designmode, but all layout and images is &quot;gone&quot;<br />
<br />
/PWB</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>pwb</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24932</guid>
		</item>
		<item>
			<title><![CDATA[I'm confused - formatting subcategory links]]></title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24858&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 21:25:37 GMT</pubDate>
			<description><![CDATA[The XML package we're using for categories w/ subcats displays them as such: 
 
 
Code: 
--------- 
<a href="c-60736-crystal-beads.aspx"><img border="0" id="EntityPic60736" style="cursor:hand;cursor:pointer;" src="images/category/icon/60736.jpg"></a><h6><a href="c-60736-crystal-beads.aspx">Crystal...]]></description>
			<content:encoded><![CDATA[<div>The XML package we're using for categories w/ subcats displays them as such:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;a href=&quot;c-60736-crystal-beads.aspx&quot;&gt;&lt;img border=&quot;0&quot; id=&quot;EntityPic60736&quot; style=&quot;cursor:hand;cursor:pointer;&quot; src=&quot;images/category/icon/60736.jpg&quot;&gt;&lt;/a&gt;&lt;h6&gt;&lt;a href=&quot;c-60736-crystal-beads.aspx&quot;&gt;Crystal Beads&lt;/a&gt;&lt;/h6&gt;</code><hr />
</div>We've been told by our SEO company that it would be better if, at the very least, it looked like this: (so that there's only one &lt;a&gt; tag)<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;a href=&quot;c-60736-crystal-beads.aspx&quot;&gt;&lt;img border=&quot;0&quot; id=&quot;EntityPic60736&quot; style=&quot;cursor:hand;cursor:pointer;&quot; src=&quot;images/category/icon/60736.jpg&quot;&gt;&lt;h6&gt;Crystal Beads&lt;/h6&gt;&lt;/a&gt;</code><hr />
</div>How do we accomplish this? It looks like this in the XML Package:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;a href=&quot;{aspdnsf:CategoryLink(EntityID, SEName, 0, $scName)}&quot;&gt;<br />
&lt;xsl:value-of select=&quot;aspdnsf:LookupEntityImage(EntityID, 'category', 'icon', 0)&quot; disable-output-escaping=&quot;yes&quot; /&gt;<br />
&lt;/a&gt;</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>jhoskinson</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24858</guid>
		</item>
		<item>
			<title>Prices.Cs</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24853&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 20:17:56 GMT</pubDate>
			<description>I am trying to add to Prices.cs. I have created the following on ShoppingCart.cs: 
 
 
Code: 
--------- 
public string ClayRateDisplayFormat 
        { 
            get 
            { 
                Decimal tCalcRate = ClayCalcRate();</description>
			<content:encoded><![CDATA[<div>I am trying to add to Prices.cs. I have created the following on ShoppingCart.cs:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">public string ClayRateDisplayFormat<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; get<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Decimal tCalcRate = ClayCalcRate();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return Localization.CurrencyStringForDisplayWithExchangeRate(tCalcRate, ThisCustomer.CurrencySetting);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div>How can I pull this value into Prices.cs. I specifically want to add it to the taxSubTotal total. Any ideas? When I try to do cart.ClayRateDisplayFormat, it doesn't recognize it.</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>chrismartz</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24853</guid>
		</item>
		<item>
			<title>Help... Missing Order # but Processed in PayPal with order #</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24852&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 19:49:21 GMT</pubDate>
			<description>I am missing an order  for a “confirmed” customer in PayPal message. We have been paid but the order is not listed in admin just skipped over. When we do a report by category we see the order number and products but no order can be pulled in admin. We offer credit cars and PayPal Express and almost...</description>
			<content:encoded><![CDATA[<div>I am missing an order  for a “confirmed” customer in PayPal message. We have been paid but the order is not listed in admin just skipped over. When we do a report by category we see the order number and products but no order can be pulled in admin. We offer credit cars and PayPal Express and almost missed the order but caught it in the our gateway CMS. Its only happened once but it’s a new store.<br />
<br />
Anyone seen this.<br />
<br />
MSD</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>MSD</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24852</guid>
		</item>
		<item>
			<title>Typos and Inconsistencies in Country Table</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24851&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 19:45:15 GMT</pubDate>
			<description><![CDATA[1) In the Country table in 9.0.1.3, "Bosnia and Herzegowina" is spelled half in English and half in German. 
 
2) "Korea, Democratic People's Republic of" is in fact the English long form for North Korea. This should be changed to "Korea, South," the international short form or to "Korea, Republic...]]></description>
			<content:encoded><![CDATA[<div>1) In the Country table in 9.0.1.3, &quot;Bosnia and Herzegowina&quot; is spelled half in English and half in German.<br />
<br />
2) &quot;Korea, Democratic People's Republic of&quot; is in fact the English long form for North Korea. This should be changed to &quot;Korea, South,&quot; the international short form or to &quot;Korea, Republic of,&quot; the international long form.<br />
<br />
3) For consistency, &quot;Croatia (local Name: Hrvatska)&quot; should either drop the contents in parentheses or others like the Czech Republic should also have Cesko.<br />
<br />
Not a big deal, but wanted to point out the first two at least. The second especially makes ASPDotNetStorefront appear to prefer North Korea over South Korea. :rolleyes::D<br />
<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>dayhawk</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24851</guid>
		</item>
		<item>
			<title>AddIns</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24850&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 17:56:58 GMT</pubDate>
			<description>9.0.1.3 
Hi, when trying to enter the Addins from the admin menu i got security error on the folders, i needed to add IIS_USR with modify on the addins folder and subfolder. Its on IIS 7, but network service wasnt any help, is there some security issues on this, or what should be the correct...</description>
			<content:encoded><![CDATA[<div>9.0.1.3<br />
Hi, when trying to enter the Addins from the admin menu i got security error on the folders, i needed to add IIS_USR with modify on the addins folder and subfolder. Its on IIS 7, but network service wasnt any help, is there some security issues on this, or what should be the correct security setting on the folder?<br />
<br />
/PWB</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>pwb</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24850</guid>
		</item>
		<item>
			<title>Google Analytics</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24848&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 17:04:50 GMT</pubDate>
			<description>I was trying to get Google Analytics set up on my site and I found the directions Google gives are very different from the one that the ASPDNSF manual gives http://manual.aspdotnetstorefront.com/p-1035-google-analytics-and-ecommerce-tracking.aspx. 
 
Obviously Google is the authority on this, but...</description>
			<content:encoded><![CDATA[<div>I was trying to get Google Analytics set up on my site and I found the directions Google gives are very different from the one that the ASPDNSF manual gives <a href="http://manual.aspdotnetstorefront.com/p-1035-google-analytics-and-ecommerce-tracking.aspx" target="_blank">http://manual.aspdotnetstorefront.co...-tracking.aspx</a>.<br />
<br />
Obviously Google is the authority on this, but why are the ASPDNSF directions so different? Is there something I'm unaware of behind the scenes that requires this other stuff from ASPDNSF?</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>cjbarth</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24848</guid>
		</item>
		<item>
			<title>Turning off the auto newsletter email</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24845&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 15:25:39 GMT</pubDate>
			<description><![CDATA[How do I turn this off? I don't want this email to go out.]]></description>
			<content:encoded><![CDATA[<div>How do I turn this off? I don't want this email to go out.</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>UNLGroup</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24845</guid>
		</item>
		<item>
			<title>Real Time Shipping Problems</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24805&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 21:49:28 GMT</pubDate>
			<description>Anyone have any trouble today 9/2/2010 with Real-Time shipping not working?  We had about a 45 minute outage, which we could not explain.  It worked fine on Fixed Pricing and other non-real time options.</description>
			<content:encoded><![CDATA[<div>Anyone have any trouble today 9/2/2010 with Real-Time shipping not working?  We had about a 45 minute outage, which we could not explain.  It worked fine on Fixed Pricing and other non-real time options.</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>Amazing</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24805</guid>
		</item>
		<item>
			<title>New column added to Customer Table and orders Table</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24796&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 20:02:46 GMT</pubDate>
			<description><![CDATA[New column added to Customer Table and orders Table 
 
I Added new Column "SpecialOrderNotes" to the customer table and showing in shopping cart page just above to order notes field.  
 
im able to save data in "SpecialOrderNotes" in customer table in database if someone clicks on update / checkout...]]></description>
			<content:encoded><![CDATA[<div>New column added to Customer Table and orders Table<br />
<br />
I Added new Column &quot;SpecialOrderNotes&quot; to the customer table and showing in shopping cart page just above to order notes field. <br />
<br />
im able to save data in &quot;SpecialOrderNotes&quot; in customer table in database if someone clicks on update / checkout button in shopping page.<br />
<br />
Now the problem is after new order got generated entire data is from customer table is moved to orders table except one column which i have added i.e &quot;SpecialOrderNotes&quot;<br />
<br />
So can one please let me know where is the query that moving data from customer table to orders table<br />
<br />
Thanks in advance<br />
Devender</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>dev.folks</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24796</guid>
		</item>
		<item>
			<title>Importing customer datails into 9.0.1.3</title>
			<link>http://forums.aspdotnetstorefront.com/showthread.php?t=24781&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 13:05:22 GMT</pubDate>
			<description>We are going to upgrade the to 9.0.1.3 from 8.0.1.2. 
 
I would like to import only the customer details and loging passwords etc..  
 
Is it possible? would the customer be able to login into their account with the password they already have? 
 
 
We are looking to setup the product separatly for...</description>
			<content:encoded><![CDATA[<div>We are going to upgrade the to 9.0.1.3 from 8.0.1.2.<br />
<br />
I would like to import only the customer details and loging passwords etc.. <br />
<br />
Is it possible? would the customer be able to login into their account with the password they already have?<br />
<br />
<br />
We are looking to setup the product separatly for the start.<br />
<br />
<br />
Thank you:)</div>

]]></content:encoded>
			<category domain="http://forums.aspdotnetstorefront.com/forumdisplay.php?f=18">AspDotNetStorefront ML</category>
			<dc:creator>snowy</dc:creator>
			<guid isPermaLink="true">http://forums.aspdotnetstorefront.com/showthread.php?t=24781</guid>
		</item>
	</channel>
</rss>
