如何在VB.NET xml字符串文字中嵌入变量css样式?

时间:2010-09-20 08:41:00

标签: html css xml vb.net

我想将一个变量数据添加到HTML标签中的字符串文字

Dim locationOfImage as string = "http://blahblah......" 
Dim xmlString = _
            <div style="background:url(" <%= locationOfImage  %> ")">
                <h3>Some text</h3>

            </div>

以上不起作用,我无法快速确定如何做到这一点?这可能吗。我可以实现我试图用StringBuilder做的事情,但是如果可能的话想要使用xml文字。

1 个答案:

答案 0 :(得分:0)

<div style="<%= String.Format("background:url('{0}')", locationOfImage)  %>">