Retrieving a Logged On User ID

Here is an easy way to retrieve the user ID from who ever is logged on to a PC using ASP.Net. This is handy for ASP.Net applications where you want to put a "Welcome joe user" label at the top, auto populate a form with the user's ID or add the user ID to some data you are storing back into a database if you keep track of who edited a record last.

The code below assumes you have an aspx page with two labels on it, lblFName and lblLName. It grabs the user ID with HttpContext and then splits the ID into two values for the two names. It also assumes the user ID would be along the lines of yourdomain\joe.user. You can do more string manipulation on the two values if you want (i.e. like capitalizing the first letter) once you have the values in the string array.

protected void Page_Load(object sender, EventArgs e) {  if (!Page.IsPostBack)  {   lblFName.Text = "";   lblLName.Text = "";   try   {    if (HttpContext.Current.User.Identity.Name.IndexOf(".") > 0)    {     string uname;     uname = HttpContext.Current.User.Identity.Name.Split('\\')[1].ToString;     string[] splitname = new string[1];     splitname = uname.Split('.');     lblFName.Text = splitname[0];     lblLName.Text = splitname[1];    }   }   catch   {    //found no name, put your error code here   }  } }

Tags:,

This article is part of the GWB Archives. Original Author: Bunch

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.