asp.net-mvc – 用静态项绑定Html.DropDownList

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 用静态项绑定Html.DropDownList前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我必须静态绑定一个 Html.DropDownList和两个项目.
Text="Yes" Value="1"
Text="No"  Value="0"

重要的是,我必须设置文本和值字段.

我该怎么做?

解决方法

最好不要在视图中创建SelectList.您应该在控制器中创建它,并使用ViewData传递它.

例:

var list = new SelectList(new [] 
{
    new { ID = "1",Name = "name1" },new { ID = "2",Name = "name2" },new { ID = "3",Name = "name3" },},"ID","Name",1);

ViewData["list"]=list;
return View();

你传递给constrㄧctor ctor::::::::the the the.the…………..

在视图中:

<%=Html.DropDownList("list",ViewData["list"] as SelectList) %>
原文链接:https://www.f2er.com/aspnet/250090.html

猜你在找的asp.Net相关文章