Access it through the HttpContext.Current.User property.
Examples:
// Get the user's name string userName = HttpContext.Current.User.Identity.Name;
More Info: MSDN: HttpContext.Current.User
Subscribe to this rss feed to get your .NET tips from Mark Moeykens and his friends.
// Get the user's name string userName = HttpContext.Current.User.Identity.Name;