Scroll Forward - Slash is missing in line in Sitecore Sublayout

I have a function in C # code behind Sitecore subnets that returns a string that looks like this:

public string getProductTitle() 
    {
        Item productItem = itemHelper.GetItemByPath(currentItemPath);
        Sitecore.Data.Fields.ImageField imgField = ((Sitecore.Data.Fields.ImageField)productItem.Fields["Logo"]);
        if (imgField.Value != "")
        {
            return "<sc:Image CssClass=\"product-image ng-scope\" Field=\"Logo\" runat=\"server\" />";
        }

        string productTitle = "";
        productTitle = productItem["Produkt Titel"];
        return "<div class=\"product-name ng-binding ng-scopen\" ng-if=\"!currentProduct.imageNameHome\">" + productTitle + "</div>";
    }

      

And in ascx I call it fuction:

<%= getProductTitle() %>

      

The problem is that ultimately this is what I get in HTML at runtime:

"<sc:Image CssClass=\"product-image ng-scope\" Field=\"Logo\" runat=\"server\" >";

      

Missing / at the end, which breaks the whole line and the image is not displayed.

I also tried this:

string a = WebUtility.HtmlEncode("<sc:Image CssClass=\"product-image ng-scopen\" Field=\"Logo\" runat=\"server\" />");
return WebUtility.HtmlDecode(a);

      

and this:

return @"<sc:Image CssClass=""product-image ng-scopen"" Field=""Logo"" runat=""server"" />";

      

With the same result.

Am I missing something? How can I fix this?

+3


source to share


2 answers


Since you have two alternative ways of presenting information, I would consider moving your controls and HTML into your markup file (ASCX) and then wrapping the segments in asp: placeholder controls.

<asp:placeholder id="imageTitle" runat="server" Visible="false">
    <sc:Image CssClass="product-image ng-scope" Field="Logo" runat="server" />
</asp:placeholder>
<asp:placeholder id="textTitle" runat="server>
    <div class="product-name ng-binding ng-scopen" ng-if="!currentProduct.imageNameHome">
       <asp:Literal id="productTitleLiteral" runat="server" />
    </div>;
</asp:placeholder>

      

Then you can toggle the visibility of the placeholder in your code behind page load.



public void Page_Load{
   Item productItem = itemHelper.GetItemByPath(currentItemPath);
   Sitecore.Data.Fields.ImageField imgField = ((Sitecore.Data.Fields.ImageField)productItem.Fields["Logo"]);
    if (imgField.Value != "")
    {
        this.imageTitle.Visible = true;
        this.textTitle.Visible = false;
    }
    else {
        this.imageTitle.Visible = false;
        this.textTitle.Visible = true;
        this.productTitleLiteral.Text = productItem["Produkt Titel"];
    }
}

      

This will allow you to properly encapsulate your business logic and presentation markup and will perform better with the .NET lifecycle.

+1


source


I can't see how this works due to the ASP.NET page lifecycle.

Sitecore controls are like regular custom controls, and they run on the server side — returning them as a string would be too late in the page lifecycle to render them.

I would place the control <sc:Image />

in an ascx page or use an object FieldRenderer

to get HTML from Sitecore

 Sitecore.Web.UI.WebControls.FieldRenderer.Render(myItem, "MyFieldName", "disable-web-editing=true");

      

Then you can use logic to show or hide the image field and manage the titles based on your requirements. It is assumed that you are using the Sitecore context element.

Replace <%= getProductTitle() %>

with



 <sc:Image runat="server" ID="imgLogo" Field="Logo" />

 <asp:Placeholder runat="server" ID="phTitle">
   <div class=\"product-name ng-binding ng-scopen\" ng-if=\"!currentProduct.imageNameHome><sc:Text runat="server" ID="title"  Field="Produkt Titel"/></div>
 </asp:Placeholder>

      

Then in the code behind the Load Load method

 var currentItem = Sitecore.Context.Item;
 if(string.IsNullOrEmpty(currentItem["Logo"])
 {
    imgLogo.Visible=False;
 }

 if(string.IsNullOrEmpty(currentItem["Produkt Titel"])
 {
     phTitle.Visible=False;
 }

      

More information here:

http://gettingtoknowsitecore.blogspot.co.uk/2010/01/displaying-field-values-using-server.html

+2


source







All Articles