我是RAZOR的新手,我想在用戶單擊RadioButton時觸發一個事件。RAZOR當用戶點擊組件時如何觸發事件
理想情況下,它應該在用戶單擊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"])
你好?任何人? – Franva