In web.config,
<system.web>
<httpCookies httpOnlyCookies="false"/>
</system.web>
even if configured as
ASP.NET_SessionId is not visible from javascript.
How can I see it?
By the way, on the contrary
httpOnlyCookies="true"
Then you will not be able to see the other cookies.
Session cookies appear to be HttpOnly cookies regardless of what you specify in web.config
Per Page_Load,
Response.Cookies("ASP.NET_SessionId") .HttpOnly=False
I have confirmed that it will be a regular cookie by doing it as
I don't know what will happen if I manipulate this cookie on the client side, but
372 Update Flask User Information
341 Understanding the Meaning of mpm prefork Settings
356 Unity Virtual Stick Does Not Return to Center When You Release Your Finger
354 I have saved several codes written in python to a visual studio file.
346 Who developed the "avformat-59.dll" that comes with FFmpeg?
© 2023 OneMinuteCode. All rights reserved.