M
marcwentink
This probably is a very noob question
What is the return type of Session("Something")?
I want to change:
If Not Session("Name") Is Nothing Then
LoginId = Session("Name").ToString
to something like
MyObject = Session("Name")
If Not MyObject Is Nothing Then
LoginId = MyObject.ToString
What is the return type of Session("Something")?
I want to change:
If Not Session("Name") Is Nothing Then
LoginId = Session("Name").ToString
to something like
MyObject = Session("Name")
If Not MyObject Is Nothing Then
LoginId = MyObject.ToString