作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
首先,我觉得 Response.Redirect 只是经典 ASP 的遗留物,我应该使用 MVC 范例中的其他东西。
其次,虽然我当前的 Response.Redirect 实现正常工作,但它没有设置我想要的 cookie。我假设这是因为 header 被清除而不是在重定向时发送到客户端。
这是我目前所拥有的:
[HttpPost]
public ActionResult Login(FormCollection form)
{
User user;
string sessionKey;
if (UserManager.Login(form["Email"], form["Password"]))
{
// Login stuff here
// Remember user's email
Response.Cookies["Email"].Value = form["Email"];
Response.Cookies["Email"].Expires = DateTime.Now.AddDays(31);
// Redirect to homepage
Response.Redirect("~/");
}
}
最佳答案
在 MVC 中重定向的正确方法是 return RedirectToAction("Home", "Index")
。
cookie 应该可以工作。
关于c# - 如何在 MVC3/Razor 中正确重定向(同时设置 cookie)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6372987/
我是一名优秀的程序员,十分优秀!