我在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。
但我的观点没有改变
我想要更改网址。
请帮帮我。