如何将值绑定到asp.net mvc中的dropdownlist?

时间:2014-04-03 06:24:45

标签: c# asp.net-mvc-4

我有几个文本框和一个下拉列表,如:

       for (int i = 0; i < count; i++)
       {
        <tr>
        <td>@Html.DropDownListFor(m => m.GetTimeSheetDetails[i].PROJ_ID, (SelectList)ViewBag.ProjectList, "-- Choose a Project --", new { @id = "ddlProjectvalue" })
        </td>
        <td>@Html.TextBoxFor(m => m.GetTimeSheetDetails[i].SUN_HRS, new { style = "width:50px; height:30px;", @class = "sunhrs" })
        </td>
        <td>@Html.TextBoxFor(m => m.GetTimeSheetDetails[i].MON_HRS, new { style = "width:50px; height:30px;", @class = "monhrs" })
        </td>
        <td>@Html.TextBoxFor(m => m.GetTimeSheetDetails[i].TUE_HRS, new { style = "width:50px; height:30px;", @class = "tuehrs" })
        </td>
        <td>@Html.TextBoxFor(m => m.GetTimeSheetDetails[i].WED_HRS, new { style = "width:50px; height:30px;", @class = "wedhrs" })
        </td>
        <td>@Html.TextBoxFor(m => m.GetTimeSheetDetails[i].THU_HRS, new { style = "width:50px; height:30px;", @class = "thurhrs" })
        </td>
        <td>@Html.TextBoxFor(m => m.GetTimeSheetDetails[i].FRI_HRS, new { style = "width:50px; height:30px;", @class = "frihrs" })
        </td>
        <td>@Html.TextBoxFor(m => m.GetTimeSheetDetails[i].SAT_HRS, new { style = "width:50px; height:30px;", @class = "sathrs" })
        </td>
        </tr>
        </td>
        }

我希望将数据从数据库绑定到所有字段,每个东西都完美地显示数据,但是proj_id的下拉列表没有显示文本,即使我将值传递给dropdownlist。我正在路过:

public int GetTimsheetData(int empid, TimesheetModel TimesheetModel)
{
    // GetimeSheet all the rows according employee name
    var emps = (from n in db.TIMESHEETs
                where n.RES_ID == empid
                select n).ToList();
    int count = emps.Count();
    HttpContext.Current.Session["count"] = count;
    try
    {
        List<TimesheetModel> emptyList = new List<TimesheetModel>();
        TimesheetModel.GetTimeSheetDetails = emptyList; //taking Empty List and bind to GetTimesheetDetails for Add items into it.


        //if Employee Name has more than one record.
        if (emps.Count() > 0)
        {
            foreach (var timeSheet in emps)
            {
                TimesheetModel item = new TimesheetModel();
                item.WEEK_CAL_ID = timeSheet.WEEK_CAL_ID;
                item.PROJ_ID = timeSheet.PROJ_ID;
                item.SUN_HRS = timeSheet.SUN_HRS;
                item.MON_HRS = timeSheet.MON_HRS;
                item.TUE_HRS = timeSheet.TUE_HRS;
                item.WED_HRS = timeSheet.WED_HRS;
                item.THU_HRS = timeSheet.THU_HRS;
                item.FRI_HRS = timeSheet.FRI_HRS;
                item.SAT_HRS = timeSheet.SAT_HRS;
                TimesheetModel.GetTimeSheetDetails.Add(item);

            }

        }

    }
    catch (Exception ex)
    {
        throw ex;
    }
    return count;
}

并返回控制器,如:

public ActionResult GetEmployeeDetails(int empId, string btn, TimesheetModel timesheetModel)
{
    Employer_BL employerBL = new Employer_BL();
    ViewBag.ProjectList = timesheetModel.getProjects;

    //If GetTimesheetData returns morethan one record 
    if (employerBL.GetTimsheetData(empId, timesheetModel) >= 0)
    {
        timesheetModel.EMP_ID = empId;

        //passes model data to View 
        return View("Timesheet", timesheetModel);
    }
    TimesheetModel model = new TimesheetModel();
    model.EMP_ID = empId;
    return View("Timesheet", model);
}

我在哪里做错了,下拉列表显示初始索引而不是显示传递值的文本。请帮助我。

在单独的类中我写了如下所示的项目名称:

    public SelectList getProjects()
    {
        IEnumerable<SelectListItem> projectslist = (from proj in res.PROJECTs where proj.IS_DELETED == "N" select proj).AsEnumerable().Select(projt => new SelectListItem() { Text = projt.NAME, Value = projt.ID.ToString() });
    return new SelectList(projectslist, "Value", "Text", PROJ_ID);
    }

3 个答案:

答案 0 :(得分:1)

这取决于我在源代码中找不到的ViewBag.ProjectList。您可以使用IEnumerable<SelectListItem>类型的对象填充它,其中Selected项属性之一设置为true

public IEnumerable<SelectListItem> GetList()
{
    return (from proj in res.PROJECTs where proj.IS_DELETED == "N" select proj).AsEnumerable().Select(projt => new SelectListItem() { Text = projt.NAME, Value = projt.ID.ToString() }).ToList();
}
控制器上的

ViewBag.ProjectList = GetList();
你的观点

@{
    var projectList = 
        new SelectList(ViewBag.ProjectList, "Value", "Text", Model.GetTimeSheetDetails[i].PROJ_ID.ToString())
}
@Html.DropDownListFor(m => m.GetTimeSheetDetails[i].PROJ_ID, projectList, "-- Choose a Project --")

答案 1 :(得分:0)

您可以尝试这种方法:

[NonAction]
private IEnumerable<SelectListItem> GetData()
{
    return new List<SelectListItem>()
    {
        new SelectListItem(){ Text="--Select--", Value="0"},
        new SelectListItem(){ Text="A", Value="1"},
        new SelectListItem(){ Text="B", Value="2"},
        new SelectListItem(){ Text="C", Value="3"},
    };
}

Call this function in Action Method
public ActionResult Create()
{
    ViewData["categories"] = GetData();
    return View();
}


On your html page:
  <%= Html.DropDownList("cat", (IEnumerable<SelectListItem>)ViewData["categories"])%>

答案 2 :(得分:0)

您可以使用 viewbag 。在您的控制器中,您可以从数据库中读取数据:

public ActionResult Create()
{
  ViewBag.ClassName = new SelectList(objclassrep.GetClasslist(), "Id", "ClassName");
}

在您的视图模型中,您可以从控制器中读取数据:

<div class="editor-label">
            @Html.LabelFor(model => model.ClassId)
</div>
<div class="editor-field">
            @Html.DropDownListFor(x => x.ClassId, (SelectList)ViewBag.ClassName);
            @Html.ValidationMessageFor(model => model.ClassId)
</div>

此代码会自动将您数据的ID绑定到DDL 这是类ID

这是getClassList函数:

 public List<Class> GetClasslist()
        {
            return _dbcontext.Classes.ToList();
        }