Tip

    Tip

    Asp.net MVC Html.DropDownList SelectListItem
    Asp.net  

    셀렉트 html
    Asp.net MVC Html.DropDownList SelectListItem

    //Controller
    ViewBag.Slts = _iBiz.Gets(_iBrdID, xCmd, xOnCDDB).OrderBy(m => m.order)
                                                    .Select(m => new SelectListItem()
                                                    {
                                                        Text = m.text,
                                                        Value = m.id
                                                    }).ToList();

    //View
    @Html.DropDownList("slt_", (IEnumerable<SelectListItem>)ViewBag.Slts, new { @class = "form-control w-sm inline input-sm", @id = "slt_id_"  });

    //값 설정해야 하는 경우
    @Html.DropDownList("slt_", new SelectList((IEnumerable<SelectListItem>)ViewBag.Slts,"Value", "Text", _iSlt), " * ", new { @id = "slt_id_", @class = "form-control" });


    Comment (0)
    댓글 등록 폼
    덧글 입력박스
    유동형 덧글모듈