Little problem with Session.
I just started with C#.NET.
We get that in school but don't learn a thing. Need it for my Finals (GIP).
So in my login I have txtGebruiker this i put in a session and then i want another page which says : Welcome, you are now logged in as: And then the username
Session.Add("naam",txtGebruiker.Text);
But how can i read this session and writ it into my new page where i have lblGebruiker??
Session("naam") = lblGebruiker.Text;
This doesn't work.
Grtz Apoc