I'm trying to store an authentication-key into my cookies when login succeeded:
HttpContext.Response.Cookies.Append("Bearer", accessToken, cookieMonsterOptions);
So in the controller-class this works. I can easily create and read my cookies.
But now I want to check and, if it exists, read the value of a cookie in my _Layout.cshtml
and show the name of the logged in user - or the link to login.
But how can I read my cookies in the partial _Layout.cshtml
?
string value = HttpContext.Request.Cookies.Get("Bearer");
doesn't work. It tries to add either System.Web
to my usings or says HttpContext is static and needs a reference to access Request
.
Any suggestions or ideas?