1

ASP.Net MVC3 Razor を使用しています。

データをバインドしたコントローラーがあります

public Actionresult Index()
    {
        ViewBag.student= new SelectList(db.Collection, "ID", "Name"); 
ViewBag.student1= new SelectList(db.Collection, "ID", "Name"); 
return view(); 
  }

これが私の見解です

<table>
<tr>
    <td>
    @Html.DropDownList("student")

    </td>
    <td>

    @Html.DropDownList("student1")
    </td>
    </tr>
</table>

私のコードの問題は何ですか?

4

1 に答える 1

0
public Actionresult Index()
{
    ViewBag.studentList = new SelectList(db.Collection, "ID", "Name"); 
    ViewBag.student1List = new SelectList(db.Collection, "ID", "Name"); 
    return view(); 
}

<table>
<tr>
    <td>
    @Html.DropDownList("student", (SelectList)ViewBag.studentList)

    </td>
    <td>

    @Html.DropDownList("student1", (SelectList)ViewBag.student1List)
    </td>
    </tr>
</table>
于 2012-10-16T06:56:35.257 に答える