使用带有@HTML原始链接的Span类

时间:2014-03-30 11:56:01

标签: html asp.net-mvc twitter-bootstrap

我有这段代码:

 string tag = "<td> <a href="+ path + ">" + "<span class=glyphicon glyphicon-trash" + ">" + "</span>" + "</a>" + "</td>";
 }
 @Html.Raw(tag)

当我尝试使用glyphicon图标时,没有任何内容出现。我是否缺少在此实例中使用span类的任何语法?

1 个答案:

答案 0 :(得分:1)

据我所知,您还需要将类值和href值包装在引号中。:

 string tag = "<td> <a href='" + path + "'>" + "<span class='glyphicon glyphicon-trash'" + ">" + "</span>" + "</a>" + "</td>";