установить временные данные из Global.asax - PullRequest
0 голосов
/ 04 мая 2011

Как я могу установить временные данные из Global.asax?

asp.net-mvc-2

1 Ответ

4 голосов
/ 04 мая 2011
Dictionary<string, object> tempDataDictionary = Context.Session["__ControllerTempData"] as Dictionary<string, object>;
                if (tempDataDictionary == null)
                {
                    tempDataDictionary = new Dictionary<string, object>();
                }
                **tempDataDictionary["TopMessage"] = message;
                tempDataDictionary["FromUnauthorized"] = true;
                HttpContext.Current.Session["__ControllerTempData"] = tempDataDictionary;**
                Server.ClearError();
                Response.Redirect("~/Account/LogOn");
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...