Hi guys,
In my rescent example I tryed to run here, was HttpContext.Current.Session.Abandon() method I wanted to run in Master.cshtml in particular case.
By default if no url parameter present, it must run this.
Long story short, when I am requesting /Admin of this site, because I am not using a url parameter, this line gets executed!?
I mean that my session is getting Abondont, not sure if that is actually if that line executed, or what is the reason that /Admin just keeps logging off automatically (right after login) and brings me back to login screen.
As soon as I remove this line:HttpContext.Current.Session.Abandon()
/Admin works as it should.
My question:
I saw before that Styles are influencing /Admin in certain cases.
But why in the world, would /Master or any other html/cshtml files have to have a way to influence /Admin? I mean /Admin has another
Thoughts, comments, explonation?
/Dmitrij