Can anybody help me how to set base64image in local storage, and then on other page get from local storage and fill the input with that value
Hi,
You can use below code to set LocalStorage Item
localStorage.setItem('Key','Value');
to get LocalStorage Item
localStorage.setItem('Key');
to remove LocalStorage Item
localStorage.removeItem('Key');
I hope this will help you out.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.