Hello Lance,
You could take advantage of creating a custom transformation method. You can pass the
UserID of the article owner to the transformation. Since this information is stored in the
NodeOwner field, you can use the following expression:
<%# MyFunctions.TransformationName(Eval("NodeOwner")) %>Then you will need to create the
UserInfo object based on the
UserID:
UserInfo user = UserInfoProvider.GetUserInfo(UserID);Now you can access all properties of the owner and return them according to your need.
If you need more information about custom transformation method I would like to point you to the following article:
Adding custom functions to transformationor
to API reference:
Kentico CMS API referenceBest regards,
Michal Legen