コード例 #1
0
        public void DropDownListMenu()
        {
            shSexService        _sex  = new shSexService();
            IEnumerable <shSex> dsSex = _sex.FindList();

            ViewBag.Sex = new SelectList(dsSex, "SexId", "SexName", null);
        }
コード例 #2
0
        public static MvcHtmlString SexName(this HtmlHelper helper, int?SexId)
        {
            shSexService _sex = new shSexService();

            return(new MvcHtmlString(_sex.SexName(SexId)));
        }