Reputation: 5669
Im setting a localStorage.setItem(persnr,'12345'); value and its working as it should.
But I wonder how can I get the value from the localStorage and put it in a .asp(classic) variable?
Upvotes: 0
Views: 2703
Reputation: 6933
You can't. Javascript is run on the client. ASP is run on the server.
Upvotes: 1