Replacement of an session in Visual basic.net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I'm new with visual basic .net so i don't know very much of it..
But, i i'm searchin for 3 days on the internet for the folowing solusion:

I want to use something of an session in vb.net so i can check if the user
that has loged on, have some rights for some pages.

What i have read, coms to the solusion, that an session is imposible in
vb.net so I want to now the replacement of an session?

So if there is someone who can help me,

Be my guest.

IS there anyone who can
 
For a specific user:

Session
ViewState
Cookies

are commonly used items to cache small amounts of data.

Session IS AVAILABLE in VB.NET (rather asp.net, even if you program in
vb.net)

Make sure you have a reference to System.Web.dll in your project. But if
you "Start New Project / WebSite", you'll get this automatically.
 
Back
Top