Hi again would you have a solution to this warning
Access of shared member, constant member, enum member or nested type through an instance; qualifying expression will not be evaluated.
I'm trying to access the LoginUser method from the CSK userutility class which login users
Dim userutil1 As New ASPNET.StarterKit.Communities.UserUtility
userutil1.LoginUser(userused, passused) <---- here's where i get the warning
The LoginUser method is implemented as:
Public Shared Function LoginUser(username As String, password As String) As Integer
can't seem to understand why this is happening.
hope you can help thanks