Reputation: 505
I have a related pages Webpart to display key team members username and some details in CMS_User table. How can I access the CMS_User table data inside related page webpart transformation.
Upvotes: 0
Views: 104
Reputation: 7696
You can:
CMSContext.Current.GlobalObjects.Users["username_of_your_choice"].FullName
Upvotes: 2