↧
Re: why use session
Hi,As long as nothing is stored in the session, the session id will change again and again. Each user session have its own set of session variables.That said authentication is already handled by...
View ArticleRe: why use session
You shouldn't use session to manage authentication. There are specific frameworks for that purpose already.Each user will have a separate session. I don't understand what it is that you think you saw,...
View Articlewhy use session
I am beginner in c#Now I am creating web application in C#. I have created login form and I have used session,code is used belowSession["User"] = txtuse.Text; Session["Pass"] = txtpa.Text;...
View Article