red man

red man

  • NA
  • 14
  • 0

Profile properties cannot be retrieved eventhough they are being saved to database

Feb 13 2007 8:52 PM
Hi, i have a createUserwizard control in which i also collect some Personalisation information stored using Profile. Profile.FirstName = Firstname.Text; Profile.LastName = Lastname.Text; Profile.Age = Age.Text; Profile.Save(); then later in my profile page after user has been authenticated i am trying to show the profile properties FN.Text = Profile.FirstName; LN.Text = Profile.LastName; ageIs.Text = Profile.Age; Now the problem is the profile properties are being stored in database(which i can see in sqlserver2005) but when i try to diplay profile properties in my Profile page data is not being retrieved from the database . I can not understand why?? yojimbo