Tuesday, October 13, 2015

Background style to pull image from Sitecore

<% if (Entry != null)
   {
       string inlineStyle = !string.IsNullOrEmpty(Entry.Image.Src) ?
                     string.Format("background-image: url('{0}');", Entry.Image.Src) :
                     string.Empty;
      

       %>

No comments:

Post a Comment