asp.net-mvc – ASP.NET MVC获取下拉列表值

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – ASP.NET MVC获取下拉列表值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在ASP.NET MVC中,如何从发布的表单中获取选定的下拉列表值?

解决方法

public class MyController
{
    public ActionResult MyAction(string DropDownListName)
    {

    }
}

这将为MasterMind的答案中的代码行做.您想要使用哪种方法取决于您的情况.在我看来,没关系

如果所有可能的选择值都是数字,您也可以这样做:

public class MyController
{
    public ActionResult MyAction(int DropDownListName)
    {

    }
}

然后,它会将所选值的字符串转换为整数.

原文链接:https://www.f2er.com/aspnet/246548.html

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