public bool saveContact(string txtFirstName, string txtLastname, string ddlTitle, 
                               string ddlAreaCode, string txtPhoneNumber, string txtAddress, 
                               string ddlState, string txtEmail, string txtComment,
                               bool chkRemember, DateTime dob, int userID)
        {

            try
            {
                LINQContactInformationDataContext cid = new LINQContactInformationDataContext();
                ContactInformation ci = new ContactInformation
                {
                    FirstName = txtFirstName,
                    LastName = txtLastname,
                    Title = ddlTitle,
                    AreaCode = ddlAreaCode,
                    PhoneNumber = txtPhoneNumber,
                    Address = txtAddress,
                    State = ddlState,
                    Email = txtEmail,
                    Comment = txtComment,
                    RememberDob = chkRemember,
                    Dob = dob,
                    UserID = userID
                };
                cid.ContactInformations.InsertOnSubmit(ci);
                cid.SubmitChanges();
            }
            catch (Exception)
            {
                return false;
            }
            return true;
        }
 partial void UpdateContactInformation(ContactInformation instance);
 partial void DeleteContactInformation(ContactInformation instance);
 partial void InsertContactInformation(ContactInformation instance);