Example #1
0
 void AuthenticationService_Authenticating(object sender, System.Web.ApplicationServices.AuthenticatingEventArgs e)
 {
 }
 protected void AuthenticationService_Authenticating(object sender, System.Web.ApplicationServices.AuthenticatingEventArgs e)
 {
     e.Authenticated            = Membership.Providers["AppSecMembershipProvider"].ValidateUser(e.UserName, e.Password);
     e.AuthenticationIsComplete = true;
 }