检查选择了哪个单选按钮 C#

本文关键字:单选按钮 选择 检查 | 更新日期: 2023-09-27 18:33:36

在 MVC ASP.NET C# 中,我有一个带有单选按钮的列表。

在我的控制器中,我需要检查选择了哪些值以执行正确的函数

 <div id="radioBtnList">
     <fieldset id="Stats">
       <form method="post">
        <input type="radio" class="opt" name="Statistics" value="Total" checked>Total
        <br>
        <input type="radio" class="opt" name="Statistics" value="Products">Products
        <br>
        <input type="radio" class="opt" name="Statistics" value="Mediators">Mediators
        <br /><br />
        <input type="submit" id="btnStart" value="Start"
               onclick="btnStart_Click" />
        <br /><br />
    </form>
</fieldset>

我习惯于jQuery选择ID然后选择.value,但我不确定如何在c#中执行此操作

     [HttpPost]
      public ActionResult Index(StatisticsView) 
      {
         init(true);
         if (opt.value == "Total") // how do i write this correctly in c#?
        {
           ///some function here
        }
        else if (opt.value== "Products")
        {
           ///some function here
        }
        else if (opt.value == "Mediators")
        {
              ///some function here
       }
    return View(v);
   }

检查选择了哪个单选按钮 C#

在控制器中的操作方法中,请尝试如下操作,

[HttpPost]
public ActionResult Index(StatisticsView v, string Statistics)
{
    init(true);
    if(Statistics   == "Total")
    {
       //function
    }
    else if(Statistics == "Products")
    {
       //function
    }
   return View(v);
}