當前位置: 首頁>>代碼示例>>C#>>正文


C# Catalog.DisplayPrice方法代碼示例

本文整理匯總了C#中Catalog.DisplayPrice方法的典型用法代碼示例。如果您正苦於以下問題:C# Catalog.DisplayPrice方法的具體用法?C# Catalog.DisplayPrice怎麽用?C# Catalog.DisplayPrice使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Catalog的用法示例。


在下文中一共展示了Catalog.DisplayPrice方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: UserSpecificPriceForDisplay

        public static string UserSpecificPriceForDisplay(Catalog.UserSpecificPrice price)
        {
            StringBuilder sb = new StringBuilder();

            if (price.ListPriceGreaterThanCurrentPrice)
            {
                sb.Append("<label>" + Content.SiteTerms.GetTerm(Content.SiteTermIds.ListPrice) + "</label>");
                sb.Append("<span class=\"choice\"><strike>");
                sb.Append(price.ListPrice.ToString("C"));
                sb.Append("</strike></span>");
            }

            sb.Append("<label>" + Content.SiteTerms.GetTerm(Content.SiteTermIds.SitePrice) + "</label>");
            sb.Append("<span class=\"choice\">");
            sb.Append(price.DisplayPrice());
            sb.Append("</span>");

            if ((price.BasePrice < price.ListPrice) && (price.OverrideText.Trim().Length < 1))
            {
                sb.Append("<label>" + Content.SiteTerms.GetTerm(Content.SiteTermIds.YouSave) + "</label>");
                sb.Append("<span class=\"choice\">");
                sb.Append(price.Savings.ToString("c")
                            + " - "
                            + price.SavingsPercent
                            + System.Threading.Thread.CurrentThread.CurrentUICulture.NumberFormat.PercentSymbol);
                sb.Append("</span>");
            }

            sb.Append("<div class=\"clear\"></div>");

            return sb.ToString();
        }
開發者ID:appliedi,項目名稱:MerchantTribe,代碼行數:32,代碼來源:HtmlRendering.cs

示例2: RenderSingleProduct

        public static void RenderSingleProduct(ref StringBuilder sb, 
                                                Catalog.Product p,
                                                bool isLastInRow, 
                                                bool isFirstInRow,
                                                System.Web.UI.Page page,
                                                Catalog.UserSpecificPrice price)
        {
             
        string destinationLink = Utilities.UrlRewriter.BuildUrlForProduct(p, page);

        string imageUrl 
            = MerchantTribe.Commerce.Storage.DiskStorage.ProductImageUrlSmall(
                    ((IMultiStorePage)page).MTApp, 
                    p.Bvin, 
                    p.ImageFileSmall, 
                    page.Request.IsSecureConnection);

        if (isLastInRow) 
        {
            sb.Append("<div class=\"record lastrecord\">");
        }
        else if (isFirstInRow)
        {
            sb.Append("<div class=\"record firstrecord\">");
        }
        else
        {
            sb.Append("<div class=\"record\">");
        }


        sb.Append("<div class=\"recordimage\">");
        sb.Append("<a href=\"" + destinationLink + "\">");
        sb.Append("<img src=\"" + imageUrl + "\" border=\"0\" alt=\"" + p.ImageFileSmallAlternateText + "\" /></a>");
        sb.Append("</div>");

        sb.Append("<div class=\"recordname\">");
        sb.Append("<a href=\"" + destinationLink + "\">" + p.ProductName + "</a>");
        sb.Append("</div>");
        sb.Append("<div class=\"recordsku\">");
        sb.Append("<a href=\"" + destinationLink + "\">" + p.Sku + "</a>");
        sb.Append("</div>");
        sb.Append("<div class=\"recordprice\">");
        sb.Append("<a href=\"" + destinationLink + "\">" + price.DisplayPrice(true) + "</a>");
        sb.Append("</div>");

        sb.Append("</div>");

        }
開發者ID:appliedi,項目名稱:MerchantTribe,代碼行數:49,代碼來源:HtmlRendering.cs


注:本文中的Catalog.DisplayPrice方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。