Question Session Web Storage Access

Progress Version: 11.4 (Traditional Webspeed)

Hi All,
Like how we access cookies using get-cookie/set-cookie methods in progress; do we have any methods were we can access the local storage (DOM storage)?
 

Cecil

19+ years progress programming and still learning.
Progress Version: 11.4 (Traditional Webspeed)

Hi All,
Like how we access cookies using get-cookie/set-cookie methods in progress; do we have any methods were we can access the local storage (DOM storage)?
This sounds like a JavaScript Question.
 

Cecil

19+ years progress programming and still learning.
localStorage.setItem("username", "John");

alert( "username = " + localStorage.getItem("username"));

LocalStorage

Just expanding on your answer. I think the question might be is 'how to SET & GET localstorage' from WebSpeed, which of course can't be done directly from WebSpeed but can be done via JavasScript/AJAX combonation.
 
Top