Session Content question

  • Thread starter Thread starter Steve Caliendo
  • Start date Start date
S

Steve Caliendo

Hi,

I have a session variable, liike this : Session("User") = "Steve"

I can get "Steve" by requesting: Session.Contents(0)

Is there a way to get "User" out of index 0 ?

Thanks,

Steve
 
Steve Caliendo said:
Hi,

I have a session variable, liike this : Session("User") = "Steve"

I can get "Steve" by requesting: Session.Contents(0)

Is there a way to get "User" out of index 0 ?

Did you try Session.Keys(0) ?

Greetings
Martin
 
Back
Top