Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Global.asax - actual application level object
Message
From
30/06/2004 17:13:04
 
 
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00919040
Message ID:
00919386
Views:
12
>I have a web app that is wizard style. I want to save my user input into a class that persists from page to page. Anyone know how to do this? I cannot parametize the data and I don't want to create 75+ session variables. :(
>
>My humble thanks in advance,

Create a class to encapsulate all the data and put that into your session. If you have a high amount of users at one time you may want to use the database, cause as you said alot of stuff stored in session really affects the IIS memory. You'd be surprised how fast you can pull this stuff out of the sql db on each hit.

And as I said, it scales much better. Also, if you use a web garden or web farm and you wanted this to work you would have to use out-of-proc or sql session store which is MUCH slower than in-proc... or you would have to use sticky ips.

BOb
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform