Bhavesh Ghul

Bhavesh Ghul

  • 785
  • 965
  • 51k

ASP.Net Membership Provider Class In Custom Method Creating

Jan 30 2019 5:52 AM
There is a method in ASP.Net Membership Provider class which is 
  1. public static bool ValidateUser(string username, string Password);   
 So now I want  to create a custom method of ValidateUser with username and email parameter like mensioned below. 
  1. public static bool ValidateUser(string username, string email); 
So , please anyone can tell me how do i create this?

Answers (1)