以下是引用片段:
核心代码如下: if (DataBase.Get_Table("select * from 会员简历 where 会员号='" + Session["帐号"].ToString() + "'").Rows.Count > 0) { //修改当前的会员简历 if (FileName != "") { DataBase.ExecSql("update 会员简历 set 出生日期='" + TextBox5.Text + "',政治面貌='" + TextBox9.Text + "',籍贯='" + TextBox10.Text + "',专业代码=" + DropDownList1.SelectedValue + ",学历='" + TextBox1.Text + "',计算机能力='" + TextBox2.Text + "',外语能力='" + TextBox3.Text + "',毕业时间='" + TextBox4.Text + "',教育背景='" + TextBox6.Text + "',工作经历='" + TextBox7.Text + "',自我评价='" + TextBox8.Text + "',简历图片='" + FileName + "' where 会员号='" + Session["帐号"].ToString() + "'"); else { DataBase.ExecSql("update 会员简历 set 出生日期='" + TextBox5.Text + "',政治面貌='" + TextBox9.Text + "',籍贯='" + TextBox10.Text + "',专业代码=" + DropDownList1.SelectedValue + ",学历='" + TextBox1.Text + "',计算机能力='" + TextBox2.Text + "',外语能力='" + TextBox3.Text + "',毕业时间='" + TextBox4.Text + "',教育背景='" + TextBox6.Text + "',工作经历='" + TextBox7.Text + "',自我评价='" + TextBox8.Text + "' where 会员号='" + Session["帐号"].ToString() + "'"); } } else { //添加当前的会员简历 DataBase.ExecSql("insert into 会员简历(出生日期,政治面貌,籍贯,专业代码,学历,计算机能力,外语能力,毕业时间,教育背景,工作经历,自我评价,简历图片,会员号) values('" + TextBox5.Text + "','" + TextBox9.Text + "','" + TextBox10.Text + "'," + DropDownList1.SelectedValue + ",'" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox3.Text + "','" + TextBox4.Text + "','" + TextBox6.Text + "','" + TextBox7.Text + "','" + TextBox8.Text + "','" + FileName + "','" + Session["帐号"].ToString() + "')"); }
|