我的 MVC 项目中有三个单选按钮,如下面的代码。
当用户通过我的应用程序中的后退按钮返回页面时,我需要检查其中一个。
我已经在 Session 中保存了用户的响应(例如Session ("MyField") = model.MyField
)
你能帮我怎么做吗?
@Html.RadioButtonFor(model => model.MyField, "Yes")
@Html.RadioButtonFor(model => model.MyField, "No")
@Html.RadioButtonFor(model => model.MyField, "NA")