Hi,
I am creating a website on ASP.Net in which a user logs on and I need to store the user specific data (plus some extra data) somewhere so that all the pages in my website can readily access the data. At one time many users could be accessing the website and every user will have his own specific data. Currently I am using sessions to store the data after login and accessing the data on different pages as and when needed. I am also using session to pass data from one page to another. I also don't want to use cookies as many companies don't allow cookies to be created. I understand that this is not the best practice. Can you guys suggest what would be the best way to manage the data?
Thanks, Abhi.