Does Html5 Sessionstorage Exist On The Server Or Client?
I was at an HTML5 presentation at MSFT yesterday and they indicated that HTML5 sessionStorage is stored on the server and localStorage was stored on the client. Can someone clarif
Solution 1:
Local Storage and Session storage are both stored on the client. The difference is that Session storage is tied to the life of the session and Local Storage is stored indefinitely.
Post a Comment for "Does Html5 Sessionstorage Exist On The Server Or Client?"