how to share data among all web app like session . i have used session but value getting lost when i make any next request don't know weather i am making mistake or what. just want to share data among all app after fetching once from database at login time. (like session do without breaking MVC rules) thanks
no different application in same i just put HttpContext.Current.Session["city"] = value; in a data fetching class but but cant can't get this value in controller as city = (string)HttpContext.Current.Session["city"] error Object not set to an Instance