how to match between a user in asp.net and a user in sharepoint -
i need asp.net function takes username , password , sharepoint link , return true if username , password match user in sharepoint
i try make object spuser , check login name still need check user password
but spuser gives me info users except password :(
actually don't want change data in sharepoint ,i need know if there user have same username , same password in sharepoint
thanks in advance
what authentication being used in sharepoint? if windows authentication not possible password, password hash stored in active directory. there no way password.
however, can validate if user/password combination correct.
use
system.directoryservices.accountmanagement
namespace query ad
check post on how it. link
Comments
Post a Comment