Keep web form content when leaving

Hi Guys,

I there a way to keep web form content when leaving and going back to HTTP page?

That’s easy:

You save the data in a cookie:

// Sava in Cookie
Session.Cookies.Set("NameOfTheCookie", "Data“)

And to get the data back again, you use:

// Load from the Cookie
Session.Cookies.Value("NameOfTheCookie“)

Great!

I read that cookies has limited capacity to store information.

Is there another way around besides using cookies?