S
shapper
Hello,
I am creating a new profile for a user from within a class in my
App_Code folder as follows:
Dim userProfile As ProfileCommon =
CType(ProfileCommon.Create(HttpContext.Current.Profile.UserName,
True), ProfileCommon)
Now I need to update an existing profile from within the same class. I
tried the following:
Dim userProfile As ProfileCommon = Profile.GetProfile(UserName)
This is not working. Any idea?
Thanks,
Miguel
I am creating a new profile for a user from within a class in my
App_Code folder as follows:
Dim userProfile As ProfileCommon =
CType(ProfileCommon.Create(HttpContext.Current.Profile.UserName,
True), ProfileCommon)
Now I need to update an existing profile from within the same class. I
tried the following:
Dim userProfile As ProfileCommon = Profile.GetProfile(UserName)
This is not working. Any idea?
Thanks,
Miguel