I am using Silverlight 4 business application and windows authentication, works fine i get the user logged in, my question is how to get information such as the first name and last name of the logged in user. Right now in the Display friendly name it just show the domain/username.
Thanks.
I had this problem a few years back in a Sharepoint app. I wrote up a few solutions, maybe one will be helpful to you?
Short summary: 1. Page.User.Identity.Name.Split(‘\’)1; or 2. HttpContext.Current.Profile.UserName or some javascript: