资源简介
本网站应用程序的方式运用了ASP.NET 技术创建,编程语言为C#,后台数据库应用了SQL Server 数据库。该数据驱动的Web应用程序是以Browser/Server的结构框架下形成的。该系统基本遵循了软件工程方法论进行系统分析、总体设计、详细设计和软件测试。实现了网上招生和就业的服务功能,考生网上报名,查询录取情况,网上报到信息填写,学校网上录取,学生管理,招生统计分析。用人单位通过本系统进行注册,发布工作信息,毕业生通过本系统注册,选择符合自己的职位信息,并给用人单位发布简历等功能。
代码片段和文件信息
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class index : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
if (!Page.IsPostBack)
{
//加载新闻列表
DataTable da = new DataTable();
this.DropDownList2.DataTextField = “专业名称“;
this.DropDownList2.DataValueField = “专业代码“;
this.DropDownList2.DataSource = Database.Get_Table(“select * from 专业“);
this.DropDownList2.DataBind();
if (Session[“index“] == null)
this.DropDownList2.Items.Insert(0 new ListItem(““ ““));
else
this.DropDownList2.Items.Insert(0 (ListItem)Session[“index“]);
//加载会员简历列表
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();
}
}
protected void linkButton8_Click(object sender EventArgs e)
{
if (DropDownList2.SelectedValue != null && DropDownList2.SelectedValue!=““)
//传递选择的专业信息
Response.Redirect(“index.aspx?zyid=“ + DropDownList2.SelectedValue + ““);
}
protected void linkButton7_Click(object sender EventArgs e)
{
//跳转页面
Response.Redirect(“index.aspx“);
}
protected void GridView2_RowCommand(object sender GridViewCommandEventArgs e)
{
string Key = this.GridView2.DataKeys[Convert.ToInt32(e.CommandArgument)].Value.ToString();
if (e.CommandName == “See“)
{
//传递标志 打开页面
Response.Redirect(“JLMB/ZwSee.aspx?Zwid=“+ Key +““);
}
}
public string GetText(string strText int intLen)
{
//如果参数大于指定的长度 则省略显示
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-03-19 18:11 asp.net17650招生就业录取通知系统 - 副本\
目录 0 2018-03-19 18:26 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\
目录 0 2018-03-19 18:11 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\
文件 8005 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\admin.master
文件 1255 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\admin.master.cs
文件 2200 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\DzList.aspx
文件 2178 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\DzList.aspx.cs
文件 2293 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\HyList.aspx
文件 2251 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\HyList.aspx.cs
文件 2192 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\JlList.aspx
文件 1188 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\JlList.aspx.cs
文件 1979 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\jytj.aspx
文件 939 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\jytj.aspx.cs
文件 3951 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\QyControl.aspx
文件 2460 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\QyControl.aspx.cs
文件 4230 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\QyList.aspx
文件 3089 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\QyList.aspx.cs
文件 1022 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\st
文件 2693 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\XsControl.aspx
文件 2013 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\XsControl.aspx.cs
文件 3392 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\XsList.aspx
文件 2597 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\XsList.aspx.cs
文件 1316 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\ZPList.aspx
文件 811 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\ZPList.aspx.cs
文件 2176 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\ZwList.aspx
文件 928 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\ZwList.aspx.cs
文件 2110 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\ZyList.aspx
文件 2184 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\Admin\ZyList.aspx.cs
目录 0 2018-03-19 18:11 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\App_Code\
目录 0 2018-03-19 18:11 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\App_Code\BLL\
文件 4220 2017-09-22 16:20 asp.net17650招生就业录取通知系统 - 副本\web_ZPW\App_Code\BLL\专业.cs
............此处省略473个文件信息
- 上一篇:EAN-13条形码生成源码
- 下一篇:C#语言Windows程序设计第二版_实验源码
评论
共有 条评论