MVC中一个表单实现多个提交按钮(一个action搞定添删改)(2)
来源:未知 责任编辑:责任编辑 发表时间:2013-12-01 14:20 点击:次
if (current.HasUserInfo)
Response.Write(current.UserInfo.UserName);
else
Response.Write("没?有Dcookies");
return View();
}
[HttpPost]
[MultiButton("del")]
public ActionResult Index(FormCollection form, int? a)
{
ClientHelper.UserLogout();
if (current.HasUserInfo)
Response.Write(current.UserInfo.UserName);
else
Response.Write("没?有Dcookies");
return View();
}
其中[MultiButton("del")] 这个特性中的del代表前台按钮的name,而不是ID,这点需要注意一下。
摘自 Lose.zhang
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>