ASP .NET Session
Hi,
I’m new in ASP .NET. I want to know witch is the better way of keep a user session. I have read of the following objects; session, response.cookie, response.redirect, application and cache.
My need is for only keep the username and password of the user that is obtain in a login page for use in the database connections in different pages.
I’m putting more attention in the response redirect because I can pass the parameters in the url like response.redirect(“mypage.aspx?id=xxxx?passwd=xxxx”).
With the response.redirect how can I capture the parameters in the other page?
If somebody knows a better way please tell me.

