我的MVC项目中有三个单选按钮,如下面的代码。
当用户通过我的应用程序中的后退按钮返回页面时,我需要检查其中一个。
我已在Session中保存用户的响应(如name
)
你能帮我解决一下这个问题吗?
Session ("MyField") = model.MyField
答案 0 :(得分:0)
通常,当您单击浏览器后退按钮时,您将能够看到包含先前提交数据的输入字段项。
如果您想在页面加载时预先选择一个特定的单选按钮,您可以在GET操作中设置它
public ActionResult Create()
{
var vm= new YourViewModel();
vm.MyField = "No"; // Replace this hard coded value with whatever value you want to set
return View(vm);
}