Я могу только получить данные, но как я могу установить.
ProfileBase pc = HttpContext.Current.Profile;
pc.PropertyValues["field"] = false; //error
pc.Save();
'' '' '' '' '' '' '
Хорошо, у меня нет доступа к HttpContext.Current.Profile.FieldName из webmethod, но я могу:
projectPage thisPage = new projectPage ();
thisPage.updateProfile(HttpContext.Current.User.Identity.Name);