RedirectToAction无法正常工作

时间:2014-06-07 08:07:15

标签: jquery asp.net-mvc-4

我在RedirectToAction(),

中面临一个奇怪的问题

我有一个Login.cshtml,其函数可以作为

进行身份验证
  [HttpPost]
  public ActionResult Authenticate(string username,string password)
{
         return RedirectToAction("Index","Home");
  }

在home.cshtml中

  public ActionResult Index()
    {
        return View();
    }

调试器也在使用Index方法。 在chrome中,我能够看到状态为200 ok。

但我的观点没有改变

我想要更改网址。

请帮帮我。

0 个答案:

没有答案