在模型(select-dropDown)MVC C#中发送和检索

本文关键字:检索 MVC 模型 select-dropDown | 更新日期: 2023-09-27 18:21:39

我喜欢流量并检索C#中的MVC模型?

我的html

<select id = 'namePerson' name = 'namePerson'> 
     <option value = '@ idPerson'> @ namePerson </ option> 
</ select> 

我的控制器

ViewBag.namePerson = mod.namePerson; 
ViewBag.idPerson = mod.idPerson;

按过帐表单仅填写IdPerson。

谢谢!

在模型(select-dropDown)MVC C#中发送和检索

为什么不使用?

@Html.DropDownListFor()

另一方面,您可以使用而不是使用ViewBag

ViewData["namePerson"]
ViewDate["idPerson"]

获得像这样的HTML

<select id = 'namePerson' name = 'namePerson'> 
    <option value = @ViewData["idPerson"]>@ViewData["namePerson"]</ option> 
</ select> 

你只需要确保你真的在发送数据,一切都应该正常。