检查选项标签字符串

问题描述 投票:0回答:2

我正在为 Html.DropDownList 使用选项标签字符串,但我的数据源是 SelectList。我如何检查服务器上的选项标签?变量的支持类型是 EnumType。我检查了该值,它显示 0,但它不允许我检查 0。

asp.net-mvc asp.net-mvc-2
2个回答
1
投票

如何将值转换回服务器上的枚举类型:

[HttpPost]
public ActionResult Index(int selectedValue)
{
    MyEnum label = (MyEnum)selectedValue;
    ...
}

0
投票

你不能。标签不随表单一起张贴。如果您需要该值,则需要将该值放入

<input type="hidden">
中。

© www.soinside.com 2019 - 2024. All rights reserved.