Hi all,
I currently store my users information using the asp.net profile system, i am creating a page where the users can update their profile details.
Onload of the page it loads their profile data into the textboxes:
firstName.text = Profile.FirstName
etc etc.
Onclick of the 'update' button, it sets the profile data to be the textbox data:
profile.FirstName = firstName.text.
However when the page reloads it comes back with the old name again, i think it is something to do with my onload event, how can i change this?
Thanks,
Alex