如何在@ Html.LabelFor

时间:2016-07-01 07:28:47

标签: html asp.net-mvc razor

我正在研究asp.net mvc项目。我正在使用此代码生成一个名称 -

@Html.LabelFor(x => x.ReturnAirTemperature, new { style = "position: absolute;top: 310px;left: 18px;z-index: 10000;font-weight:bold" })

我有这个模型 -

[Display(Name = "T(return)")]
public decimal ReturnAirTemperature { get; set; }

如何在“T(return)”文本上创建链接?

2 个答案:

答案 0 :(得分:0)

您也可以这样做

<a class="" href="@Url.Action("ActionName","ControllerName", new { id=item.MyID })">         
            <i class="glyphicon glyphicon-pencil"></i>       
            <span class="sr-only">@Html.LabelFor()</span>
        </a>

答案 1 :(得分:0)

我建议你这样使用:

<label for="@nameof(Model.ReturnAirTemperature )">u must agree our <a href="google.com">terms and conditions</a></label>