I am creating the session in class file of the first application and need to access the same session in second application both of the applications are presented in the same solution. when i am trying to do this session in second application getting null but session contain data in the first application.
In first Application
System.Web.HttpContext.Current.Session["key1"] = "a";
In second application
if (HttpContext.Current.Session["key1"]!= null) //i am getting session as null hear
How is it possible to send the session data from one application to another application with in the same solution?
please some one help me..