I have a VB.net Class, with a method declared:
Code:
Protected Friend Overridable Sub KillThreads
In my windows forms, I can go "Myclass.KillThreads"

Now, I have ASP.Net Class, with a functioned declared:
Code:
Protected Friend Shared Function GetUserLoginInfoLogin
In my Web Form, I cannot go "MyClass.GetUserLoginInfoLogin".

I am wondering why I cannot access this method.