When I run my asp app i get this error:
Exception of type System.StackOverflowException was thrown.
I have a property in a config.vb file called username that i'm trying to set using windows integrated authentication
Public Shared Property UserName() As String
Get
Return mstrUserName
End Get
Set(ByVal Value As String)
UserName = Value
End Set
End Property
It seems that when i try to do this by doing:
Config.UserName = Utilities.GetUserName
I get the above error,
any ideas?
Transcend
Exception of type System.StackOverflowException was thrown.
I have a property in a config.vb file called username that i'm trying to set using windows integrated authentication
Public Shared Property UserName() As String
Get
Return mstrUserName
End Get
Set(ByVal Value As String)
UserName = Value
End Set
End Property
It seems that when i try to do this by doing:
Config.UserName = Utilities.GetUserName
I get the above error,
any ideas?
Transcend