如何删除ASP.net内联表达式中的粗体标题

时间:2017-05-18 14:21:17

标签: asp.net vb.net

我的代码如下,我只是试图从表达式中的所有实际文本中删除粗体,同时将常量和变量保持为粗体。

还有另一种更简单的方法吗?

<b><%=name.Text%><%=If(inPlace.Checked, "", ", as well as the Role of " + CONST_SPECIAL + " for " + name.Text + ".")%></b>

2 个答案:

答案 0 :(得分:0)

您需要添加多个打开/关闭b标记。确保它们只包含常量和变量。

答案 1 :(得分:0)

我不确定我明白你想要什么,但你试过这个吗?

<b><%=name.Text%></b><%=If(inPlace.Checked, "", ", as well as the Role of <b>" + CONST_SPECIAL + "</b> for <b>" + name.Text + "</b>.")%>

我建议您使用span(或strong),因为b不再是标记。