Claes Gustavsson
Claes Gustavsson

Reputation: 5669

get localStorage into a asp variable?

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

Answers (1)

Nathan Bubna
Nathan Bubna

Reputation: 6933

You can't. Javascript is run on the client. ASP is run on the server.

Upvotes: 1

Related Questions