Posted on: 12/13/2013 10:15:59 PM | Views : 1016

protected void uxSaveProfile_Click(object sender, EventArgs e) { SaveProfile(); } public void SaveProfile() { if (Page.IsValid) { if (UserInfoEntity == null) GetUserInfoToUse(); if (UserInfoEntity != null) { UserInfoEntity.FirstName = uxFirstName.Text; UserInfoEntity.LastName = uxLastName.Text; UserInfoEntity.Address1 = uxAddress1.Text; UserInfoEntity.Address2 = uxAddress2.Text; UserInfoEntity.City = uxCity.Text; UserInfoEntity.Phone = uxPhone.Text; UserInfoEntity.Zip = uxZip.Text; UserInfoEntity.StateID = uxStateCountry.CountryID == null ? null : uxStateCountry.StateID; UserInfoEntity.State = uxStateCountry.State; UserInfoEntity.CountryID = uxStateCountry.CountryID; ...

Go to the complete details ...