Html.LabelFor

Html.LabelFor@modelI.Net4._0.Areas.OMCS.Models.PackMaterialViewModel           @Html.LabelFor(model=>model.Line)://对应的就是model中的Display              @Html.DropDown

@model I.Net4._0.Areas.OMCS.Models.PackMaterialViewModel

<link href=”~/EasyUI/themes/default/easyui.css” rel=”stylesheet” />
<link href=”~/EasyUI/themes/icon.css” rel=”stylesheet” />
<script src=”~/EasyUI/jquery-1.12.0.js”></script>
<script src=”~/EasyUI/jquery.easyui.min.js”></script>
<script src=”~/EasyUI/locale/easyui-lang-zh_CN.js”></script>

 <table>

        <tr>

            <td>
@Html.LabelFor(model => model.
Line):</td>//对应的就是model中的
Display

            <td>

             
  @Html.DropDownListFor(model => model.Line, (IEnumerable<SelectListItem>)ViewData[“LineSSF”], new { @ID = “selLine”, @style = “width:100px” })//
后台传输一个viewData[“LineSSF”]给前台接收

            </td>  </tr>
    </table>

//题外话: @Html.DropDownListFor语句也可以改写为@Html.DropDownListFor(“LineSSF”,null,new { @ID = “selLine”, @style = “width:100px” }

View接收的是一个model,那这个model编辑如下:

 public class PackMaterialViewModel
    {

        [Required(ErrorMessage = “必填”)]
        [StringLength(20, MinimumLength = 4, ErrorMessage = “{2}到{1}个字符”)]
        [Display(Name = “序列號”)]
        public string SN { get; set; }

        [Display(Name = “线别”)]
        public string
Line { get; set; }

}



版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/36853.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注