I was told that I can create ActionResult in any Controller and return PartialView with User.Identity.Name. I can then RenderPartialView in my MasterPage in order to display the user's name. I was trying to implement it, but kept getting an error that the system is not seeing my PartialView. Can someone please please explain in detail how that can be implemented? Thank you very much
Unfortunately the way this project is structured, Logon is not being rendered from within the Master. It's called from WebConfig and authenticated in AccountController.
<authentication mode="Forms">
<forms loginUrl="~/Account" timeout="2880"/>
</authentication>