Ejemplo n.º 1
0
        // GET: Admin/DropDown
        public ActionResult Index(string id)
        {
            if (String.IsNullOrEmpty(id))
            {
                var list = SelectManager.GetAllAvaliableSelectList();
                return(View(list));
            }
            var list2 = SelectManager.GetAllSelect(id.Replace('_', '.'));

            return(View("IndexSelect", list2));
        }