Session_Start 调用和 ActionFilterAttribute 中的 OnActionExecuting 之间的 Session 会发生什么。
出于某种原因,当我设置这样的东西时:
protected void Session_Start(object sender, EventArgs e)
{
Session["GoToBuyPage"] = true;
}
并尝试在 ActionFilterAttribute 中访问它:
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
bool goToPage = (bool)Session["GoToBuyPage"];
它始终为空。任何想法为什么?