tags:

views:

29

answers:

1

Hi all,

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

+1  A: 

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

Kaivosukeltaja