计算机毕业设计前台功能介绍:
4.1 login(系统主界面)
在IE里运行本系统,出现系统的主界面,包括系统登陆、选择角色。如图:
以下是引用片段:
private void LinkButton1_Click(object sender, System.EventArgs e) { User tmp=new User(); DataTable tmprs=new DataTable(); if(this.RadioButton1.Checked) { //如果选择的是主任 判断登陆的信息是否正确 tmprs=DB.Get_Table("select * from zr,xy where zr.xyid=xy.xyid and zr.zrid='"+ this.TextBox1.Text +"' and zr.mm='"+ this.TextBox2.Text +"'"); if(tmprs.Rows.Count >0) { //正确存储登陆信息 跳转页面 tmp.zrid=tmprs.Rows[0]["zrid"].ToString(); tmp.xyid=tmprs.Rows[0]["xyid"].ToString(); tmp.xymc=tmprs.Rows[0]["xymc"].ToString(); tmp.zrmc=tmprs.Rows[0]["zrmc"].ToString(); Session["User"]=tmp; Response.Redirect("Zr/index.aspx"); } else { //提示错误 Response.Write("<>"); return; } } if(this.RadioButton2.Checked) { //登陆人员为管理员 tmprs=DB.Get_Table("select * from gly where mc='"+ this.TextBox1.Text +"' and mm='"+ this.TextBox2.Text +"'"); if(tmprs.Rows.Count >0) { //跳转页面 Response. } else { //提示错误 Response.Write("<>"); return; } } if(this.RadioButton3.Checked) { //登陆人员为管理员 tmprs=DB.Get_Table("select * from xs where id='"+ this.TextBox1.Text +"' and mm='"+ this.TextBox2.Text +"'"); if(tmprs.Rows.Count >0) { //跳转页面 tmp.zrid=tmprs.Rows[0]["id"].ToString(); Session["User"]=tmp; Response. } else { //提示错误 Response("<>"); return; } } }
|
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗
第7页为计算机毕业论文基本功能介绍......