Get current user’s LoginName Ecmascript Sharepoint 2010
05/18/2011 • Admin
Category: SharePoint 2010
This post will contain two snippets one to get the current user’s LoginName on page Load using the ECMAScript and the other one to get the current User’s Profile properties like “Employe Id” using ECMAScript and JQuery.
Get Current Users LoginName - For testing purposes, copy and paste the below code into a content editor webpart
<script type=”text/javascript”>
var context = null;
var web = null;
var currentUser = null;
ExecuteOrDelayUntilScriptLoaded(GetUserLoginName, “sp.js”);
function GetUserLoginName() {
context = new SP.ClientContext.get_current();
web = context.get_web();
this._currentUser = web.get_currentUser();
context.load(this._currentUser);
context.executeQueryAsync(Function.createDelegate(this, this.onSuccessMethod),
Function.createDelegate(this, this.onFailureMethod));
}
function onSuccessMethod(sender, args) {
var today = new Date();
alert(‘ Name:’ + this._currentUser.get_title() + ‘\n Login:’ + this._currentUser.get_loginName());
}
function onFaiureMethod(sender, args) {
alert(‘request failed ‘ + args.get_message() + ‘\n’ + args.get_stackTrace());
}
</script>
Result-





Recent Forum Posts
Linq to Sharepointby RS on May 18, 2012
comments on the codeby spbsmile on May 18, 2012
connection(add) EditControlBlock and my programby spbsmile on May 18, 2012
Custom master pages used in multiple SharePoint 2010 sitesby ubersteve on May 18, 2012
upload file and click on button but cant upload file into list by using below codeby santhoshreddy on May 18, 2012