计算机毕业设计地址信息维护:
地址信息列表
此模块主要是对地址信息的维护。如图:
核心代码如下:
if (!Page.IsPostBack)
{
//加载新闻列表
DataTable da = new DataTable();
//加载职位类别
this.DropDownList1.DataTextField = "职位类别名称";
this.DropDownList1.DataValueField = "职位类别代码";
this.DropDownList1.DataSource=DataBase.Get_Table("select * from 职位类别");
this.DropDownList1.DataBind();
if (this.txtBm.Text == "")
{
this.Terr.InnerHtml = "省市名称不能为空";
return;
}
if (DataBase.Get_Table("select * from 地址 where 地址名称='" + this.txtBm.Text + "'").Rows.Count > 0)
{
this.Terr.InnerHtml = "省市名称重复";
return;
}
DataBase.ExecSql("insert into 地址(地址名称) values('" + this.txtBm.Text + "')");
initList();
else
{
this.GridView2.DataSource = DataBase.Get_Table("select * from 招聘职位,招聘单位,职位类别 where 招聘职位.单位帐号=招聘单位.单位帐号 and 招聘职位.职位类别代码 =职位类别.职位类别代码 and 职位类别.职位类别代码=" + Request.QueryString["zwid"] + "");
}
this.GridView2.DataBind();
}
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗
第12页为计算机毕业论文招聘信息功能模块介绍......