//保存数据
        protected void DataSave()
        {
            string customerInfo_ID = string.Empty;

            customerInfo_ID = hidContactId.Value;
            if (BLL.EditSysUser_For_CustomerInfo(Request.QueryString["SysUser_ID"], customerInfo_ID))
            {
                ClientScript.RegisterStartupScript(this.GetType(), "fildSave", "<script type='text/javascript'>parent.Handel('1','');</script>");
            }
            else
            {
                ClientScript.RegisterStartupScript(this.GetType(), "fildSave", "<script type='text/javascript'>parent.Handel( '2','');</script>");
            }
        }