我是 RAZOR 的新手,我想在用户单击 RadioButton 时触发一个事件。
理想情况下,它应该在用户单击 RadioButton 后动态显示所选值。
问题:
如何获取选定的值
如何在用户单击 RadioButton 时触发事件。
@{ Layout = "~/_SiteLayout.cshtml"; Page.Title = "Contact"; } <div> <table> <tr> <td> @Html.RadioButton("Gender", "Male", true) Male </td> <td> @Html.RadioButton("Gender", "Female", false) Female </td> </tr> </table> @Html.Label(Request["Gender"] == null ? "No Selection" : Request["Gender"])