예제 #1
0
        public void Bind()
        {
            int ID = Convert.ToInt32(Request.QueryString["id"]);

            WebModels.Tbl_ProjectOuterCompany company = WebBLL.Tbl_ProjectOuterCompanyManager.GetTbl_ProjectOuterCompanyById(ID);
            this.POC_Name.Value      = company.POC_Name;
            this.POC_LinkMan.Value   = company.POC_LinkMan;
            this.POC_LinkPhone.Value = company.POC_LinkPhone;
            this.POC_Email.Value     = company.POC_Email;
            this.POC_Address.Value   = company.POC_Address;
            this.Remark.Value        = company.Remark;
        }
예제 #2
0
        protected void btn_submit_Click(object sender, EventArgs e)
        {
            int ID = Convert.ToInt32(Request.QueryString["id"]);

            WebModels.Tbl_ProjectOuterCompany company = WebBLL.Tbl_ProjectOuterCompanyManager.GetTbl_ProjectOuterCompanyById(ID);
            company.POC_Name      = this.POC_Name.Value;
            company.POC_LinkMan   = this.POC_LinkMan.Value;
            company.POC_LinkPhone = this.POC_LinkPhone.Value;
            company.POC_Email     = this.POC_Email.Value;
            company.POC_Address   = this.POC_Address.Value;
            company.Remark        = this.Remark.Value;
            company.DealUser      = WebCommon.Public.GetUserName();
            int count = WebBLL.Tbl_ProjectOuterCompanyManager.UpdateTbl_ProjectOuterCompany(company);

            if (true)
            {
                ScriptManager.RegisterStartupScript(this, this.GetType(), "message", "alert('修改成功!');window.external.reload();window.external.close();", true);
            }
            else
            {
                ScriptManager.RegisterStartupScript(this, this.GetType(), "message", "alert('修改失败!');", true);
            }
        }
예제 #3
0
        protected void btn_submit_Click(object sender, EventArgs e)
        {
            WebModels.Tbl_ProjectOuterCompany company = new WebModels.Tbl_ProjectOuterCompany();
            company.POC_Type1     = this.POC_Type1.SelectedItem.Text;
            company.POC_Type2     = this.POC_Type2.SelectedItem.Text;
            company.POC_Name      = this.POC_Name.Value;
            company.POC_LinkMan   = this.POC_LinkMan.Value;
            company.POC_LinkPhone = this.POC_LinkPhone.Value;
            company.POC_Email     = this.POC_Email.Value;
            company.POC_Address   = this.POC_Address.Value;
            company.Remark        = this.Remark.Value;
            company.DealUser      = WebCommon.Public.GetUserName();
            int count = WebBLL.Tbl_ProjectOuterCompanyManager.AddTbl_ProjectOuterCompany(company);

            if (true)
            {
                ScriptManager.RegisterStartupScript(this, this.GetType(), "message", "alert('添加成功!');window.external.reload();window.external.close();", true);
            }
            else
            {
                ScriptManager.RegisterStartupScript(this, this.GetType(), "message", "alert('添加失败!');", true);
            }
        }