Friday 22 April 2016

What is "Session Storage" in Chrome Developer Tools?



What is Session Storage under the Resources tab of Chrome's Developer Tools?



Sessions are a server-side feature and cannot be accessed from the front end.




One can use the Ctrl+shift+I shortcut to access the Developer Tools.


Answer



Guess its too late to answer but for anyone else, the session storage that is shown in chrome dev tools is HTML5 sessionStorage and not the server side Session.


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...