I have just checked the banano help file. In the BANano namespace, there is.
GetSessionStorage (key As String) As Object Returns the saved json from the key in the SessionStorage
and
RemoveSessionStorage (key As String) Deletes the key from the SessionStorage
and also
SetSessionStorage (key As String, json As Object) To set data into sessionStorage, you must use the SetSessionStorage API. There are two arguments:
key for the Object's key, and json for the key value
example:
dim json as JSONGenerator
json.initialize("{ founded: '1992', formed: 'California', members: ['Tom Delonge', 'Mark Hoppus', 'Travis Barker']}")
SetSessionStorage("someband", json)
I have not used these before and also noted that one can set cookies and retrieve them.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.