So far I\'ve been using Session to pass some variables from one page to another. For instance user role. When a user logs in to the web application the role id of the user i
You forget one thing (I think)
Static data will be the same for all users of the application, while session is "per user".
So for your "User Role" scenario, I would expect funny results ;)