NewBie
NewBie

Reputation: 21

how store data in session for HTML pages

how to store data in session for HTML

For IE 8 and mozilla we have like "sessionStorage" but it doesnot work for IE7 and below

is there something that i can use that will work for all version of IE and mozilla

Upvotes: 0

Views: 452

Answers (1)

Kaivosukeltaja
Kaivosukeltaja

Reputation: 15735

Use either cookies or server side sessions. DOM storage is supported only by the newest browsers.

Upvotes: 1

Related Questions