我在 asp.net 控件中有某些元素:
<a href="#" title="" style="background-image: url('../i/foo/image.png')">
但我希望从控件 c# 属性设置背景图像字段
我在这里有什么选择?
基本上我想添加类似的东西:
<% if (!string.IsNullOrWhiteSpace(BackgroundImageUrl)) {
{ %>
<a href="#" title="" style="background-image: <%= item.BackgroundImageUrl%>">
<% } %>
但我不确定<%= item.BackgroundImageUrl%>
在 style 属性中是否正确转义。什么是正确的转义模式?