永发信息网

VS2012 mvc4 中[HttpPost]是什么意思?并且为什么要重写这样两个相同的方法?

答案:1  悬赏:60  手机版
解决时间 2021-03-24 10:49
  • 提问者网友:不爱我么
  • 2021-03-24 05:14
VS2012 mvc4 中[HttpPost]是什么意思?并且为什么要重写这样两个相同的方法?
最佳答案
  • 五星知识达人网友:酒安江南
  • 2021-03-24 06:14
要完成用户登录这个功能,首先要用Get的方法获取一个View,然后要用Post的方法接受提交的表单进行用户登录验证处理。
所以在Controller中会有两个Login action 但是这两个是不一样的,区别就在于GET和POST。
Get action 比较简单,如下:
//
// GET: /Account/Login/
public ActionResult Login()
{
return View();
}
POST action 比较复杂一些,要从Model模型中调用相应的功能,如下:
//
// POST: /Account/Login
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Login(FormCollection collection)
{
try
{
string email = collection["email"];
string password = collection["password"];
password = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(password, "md5");
......
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯