Preferred Language:

Listing 24.38 - App_Code\ProfileComponent.cs

Listing 24.38 - App_Code\ProfileComponent.cs (C#)
Copy

using System;
using System.Web;
using System.Web.Profile;

/// <summary>
/// Retrieves first name from Profile
/// </summary>
public class ProfileComponent
{
    public static string GetFirstNameFromProfile()
    {
        ProfileCommon profile = (ProfileCommon)HttpContext.Current.Profile;
        return profile.firstName;
    }
}