Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to show the current logged in user in a asp.net 4.5 mvc view. Figured if I had the code in controller for this and did labelfor in the view, I could get the result I needed. Have tried various things, but nothing is getting this correct. What I have currently is this:

In the home controller:

    public String CurrentUserName()
    {
        return System.Security.Principal.WindowsIdentity.GetCurrent().Name.ToString();
    }

In my view:

    @ViewBag.CurrentUserName();

Where am I going worng here? For some reason the two just aren't coming together. Your help is greatly appreciated.

share|improve this question

1 Answer

Home controller:

public void setCurrentUserName()
{
    ViewBag.CurrentUserName = System.Security.Principal.WindowsIdentity.GetCurrent().Name.ToString();
}

And you can use it as @ViewBag.CurrentUserName in your View.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.