我正在使用 html.Beginform 导航到操作。我正在向它传递一个参数。从下拉列表中检索参数的值。我想检查下拉菜单是否被选中。如果有点击事件,我可以轻松验证。但我不知道如何在没有点击事件的情况下实现这一点。
下面是我的代码:
@using (Html.BeginForm("Index", "Report", FormMethod.Post))
{
}
控制器 :
public ActionResult Index (string Name)
{
}
是否可以使用 Javascipt 而不是 C# 来实现它?