Custom Modules

Snippets

26
public string CreatedByUserName
{
	get
	{
		if (createdByUserName == null)
		{
			int portalId = PortalController.Instance.GetCurrentPortalSettings().PortalId;
			UserController controller = new UserController();
			UserInfo user = controller.GetUser(portalId, createdByUserID);
			if(user != null)
			{
				createdByUserName = user.DisplayName;
			}
			else
			{
				createdByUserName = "Deleted User";
			}
			
		}
		return createdByUserName;
	}
}

Comments

There are currently no comments, be the first to post one!

Post Comment

Only registered users may post comments.