+ 1
Is there any session storage in js?
2 Respostas
+ 1
you can save cookies using JavaScript but session data will always be saved on the server
0
Yes. There is session object you can use in JavaScript. Do it like so:
Session["myData"] = "some data string";