mvc razor @helper可以返回非编码标签吗?

时间:2011-09-01 21:58:30

标签: asp.net-mvc razor

这是设计的,但它基本上就是我正在做的事情。我有一个像这样的@helper:

@helper MyImage(int i) {
    String s = "<img src='{0}' />";
    String theImage = "";
    switch(i) {
        case 0: theImage = "test1.png"; break;
        case 1: theImage = "test2.png"; break;
        default: theImage = "error.png"; break;
    }
    String r = String.Format(s, theImage);
    @(r)
}

我在网页上获得的输出当然是实际的字符串:

<img src='test1.png' />

而不是图像。有没有办法禁止它以这种方式编码?

2 个答案:

答案 0 :(得分:12)

您可以使用@Html.Raw(r)而非@(r)

答案 1 :(得分:2)