我有一个带有背景图像的 div,当页面加载时,它的 url 没有被绑定。URL 在后面代码中的 get 方法中设置。不知道我在这里做错了什么。
的HTML:
<div class="decorator" style="background: transparent url(<%# HeadlineBackgroundImagePath %>) top center no-repeat; height: <%# HeadlineBackgroundImageHeight %>px;">
后面的代码:
protected string HeadlineBackgroundImagePath
{
get
{
return ($CompanyContext.Entity as IPPCUpdateEntity).HeadlineBackground.ShortSrc;
}
}
protected int? HeadlineBackgroundImageHeight
{
get
{
return ($CompanyContext.Entity as IPPCUpdateEntity).HeadlineBackground.Height;
}
}
当页面加载时,我得到这样的东西(注意 URL 中没有任何内容):
<div class="decorator" style="background: transparent url() top center no-repeat; height: px;">
我已经进入调试器,在属性上设置了一个断点,但该站点甚至没有调用该属性。