ASP.NET毕业生就业管理系统(10)

来源:xiaoniu168.com 作者:本站原创 添加时间:2011-10-09 点击数:31486

计算机毕业设计系统实现部分:

系统实现
5.1 系统主界面介绍
在IE里运行本系统,出现系统的主界面,包括系统登陆、企业发布职位信息、毕业生发布简历信息显示。如图:
计算机毕业论文

核心代码如下:
             if (!Page.IsPostBack)
        {
            //加载新闻列表
            DataTable da = new DataTable();
            //加载职位类别
            this.DropDownList1.DataTextField = "职位类别名称";
            this.DropDownList1.DataValueField = "职位类别代码";
            this.DropDownList1.DataSource=DataBase.Get_Table("select * from 职位类别");
            this.DropDownList1.DataBind();
            this.DropDownList2.DataTextField = "专业名称";
            this.DropDownList2.DataValueField = "专业代码";
            this.DropDownList2.DataSource = DataBase.Get_Table("select * from 专业");
            this.DropDownList2.DataBind();
            //加载会员简历列表
            if (Request.QueryString["zyid"] == null )
            {
                this.DataList1.DataSource = DataBase.Get_Table("select * from 毕业生,会员简历,专业 where 毕业生.会员号=会员简历.会员号 and 会员简历.专业代码=专业.专业代码");
            }
            else
            {
                this.DataList1.DataSource = DataBase.Get_Table("select * from 毕业生,会员简历,专业 where 毕业生.会员号=会员简历.会员号 and 会员简历.专业代码=专业.专业代码 and 专业.专业代码=" + Request.QueryString["zyid"] + "");
          
            }
            this.DataList1.DataBind();
            //加载招聘职位列表
            if (Request.QueryString["zwid"] == null)
            {
                this.GridView2.DataSource = DataBase.Get_Table("select * from 招聘职位,招聘单位,职位类别 where 招聘职位.单位帐号=招聘单位.单位帐号 and 招聘职位.职位类别代码 =职位类别.职位类别代码");
            }
            else
            {
                this.GridView2.DataSource = DataBase.Get_Table("select * from 招聘职位,招聘单位,职位类别 where 招聘职位.单位帐号=招聘单位.单位帐号 and 招聘职位.职位类别代码 =职位类别.职位类别代码 and 职位类别.职位类别代码=" + Request.QueryString["zwid"] + "");

            }
            this.GridView2.DataBind();        }

〖资料来源:计算机毕业论文 www.xiaoniu168.com

第11页为计算机毕业论文地址信息维护......

【联系方式】

【本站信誉】

用心做计算机毕业设计论文网