Can someone post a sample code on how I can access the TempData dictionary object from within the Global.asax.cs.
Thanks in advanced...
Can someone post a sample code on how I can access the TempData dictionary object from within the Global.asax.cs.
Thanks in advanced...
Dictionary<string, object> tempDataDictionary = httpContext.Session["__ControllerTempData"] as Dictionary<string, object>;