我在post后,再返回视图,取不到上次post的值。 在后台的时候取到的,通过FormCollection values["mid"]
@{var temp = Request.QueryString["mid"];
int? mid = string.IsNullOrEmpty(temp) ? null : (int?)Convert.ToInt32(temp); //记录上次选择的分类
}
------解决方案--------------------------------------------------------
post用
Request.Form["mid"]吧
------解决方案--------------------------------------------------------
+1
------解决方案--------------------------------------------------------