i create an mvc3 razor test application and have admin area why session id change when from controller in default area i redirect to index to admin area,where change session id?
i get session id by this syntax in default controller and in admin area controller in their action Result method
i used this method in both controllers
public ActionResult Index()
{
string se = System.Web.HttpContext.Current.Session.SessionID;
return view()
}
how can i prevent to changing session id?