我想将一个变量数据添加到HTML标签中的字符串文字
Dim locationOfImage as string = "http://blahblah......"
Dim xmlString = _
<div style="background:url(" <%= locationOfImage %> ")">
<h3>Some text</h3>
</div>
以上不起作用,我无法快速确定如何做到这一点?这可能吗。我可以实现我试图用StringBuilder做的事情,但是如果可能的话想要使用xml文字。
答案 0 :(得分:0)
<div style="<%= String.Format("background:url('{0}')", locationOfImage) %>">