Re: Problem in integrating with a simple application of mine

  •  01-27-2009, 3:43 PM

    Re: Problem in integrating with a simple application of mine

    BTW i used this to make it run
     
     public override bool ValidateUser(string username, string password)
            {
                if (username == "admin" && password == "admin")
                    return true;
                return false;
            }
View Complete Thread