CustomProfile is not saving?
- by Xaisoft
I created a class that extends ProfileBase:
public class CustomerProfile : ProfileBase
{
public int CustomerID { get; set; }
public string CustomerName { get; set; }
public static CustomerProfile GetProfile()
{
return Create(Membership.GetUser().UserName) as CustomerProfile;
}
public static CustomerProfile…