0
こんにちは私は、Sharepoint Active DirectoryからASP.netにユーザー資格情報を取得することが可能かどうか質問したいと思います。Sharepoint Active Directoryからユーザー資格情報を取得し、ASP.Netで使用します。
こんにちは私は、Sharepoint Active DirectoryからASP.netにユーザー資格情報を取得することが可能かどうか質問したいと思います。Sharepoint Active Directoryからユーザー資格情報を取得し、ASP.Netで使用します。
サービスがお楽しみ頂けます。このようなクライアント側オブジェクトモデル(CSOM)を使用して、JavaScriptを使用してログインしているユーザーの電流を得る
function CSOM()
{
var context = new SP.ClientContext.get_current();
this.website = context.get_web();
this.currentUser = website.get_currentUser();
context.load(currentUser);
context.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
}
function onQuerySucceeded(sender, args)
{
alert("Current User: " + currentUser.get_loginName());
}
function onQueryFailed(sender, args)
{
alert('Unable to get current user ' + args.get_message() + '\n'+ args.get_stackTrace());
}