Html.Label的正确用法是什么?

时间:2012-10-02 13:23:59

标签: asp.net-mvc html.label

这个字段html helper的正确用法是什么?

我在我的视图中有以下代码,但是在显示时它看起来并不像我期望的那样。

<td><@Html.Label("lblLoanType1", "Loan Type : ")</td>
<td><@Html.Label("lblLoanType2", "SBA")</td>

以下是在视图中显示的输出:

<Loan Type :                       <SBA

1 个答案:

答案 0 :(得分:2)

你有额外的&lt;在@Html之前没有必要

<td><@Html.Label

应该只是

<td>@Html.Label

然后剩下的外观归结为你的css。