gpt4 book ai didi

asp.net-mvc - 将 Html.DropDownList 与静态项绑定(bind)

转载 作者:行者123 更新时间:2023-12-03 15:05:26 24 4
gpt4 key购买 nike

我必须绑定(bind) Html.DropDownList静态只有两个项目。

Text="Yes" Value="1"
Text="No" Value="0"

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

我怎样才能做到这一点?

最佳答案

如果您想明确一点,请尝试

        @{
var domainsList = new SelectList(new []
{
new SelectListItem { Text = ".Com", Value = ".com", Selected = true },
new SelectListItem { Text = ".Shopping", Value = ".shopping"},
new SelectListItem { Text = ".Org", Value = ".org"},
new SelectListItem { Text = ".Net", Value = ".net"},
new SelectListItem { Text = ".AE", Value = ".ae"},
new SelectListItem { Text = ".Info", Value = ".info"},
}, "Value", "Text");
}
@Html.DropDownList("TopLevelDomains", domainsList)

关于asp.net-mvc - 将 Html.DropDownList 与静态项绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5576257/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com