欢迎来到天天文库
浏览记录
ID:49945396
大小:1.51 MB
页数:13页
时间:2020-03-03
《武汉纺织大学《.Net程序设计》实验报告3.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、武汉纺织大学《.Net程序设计》实验报告专业班姓名:实验时间:2015年6月18日一、实验目的:掌握利用.net开发小型管理信息系统或电子商务系统的基本方法二、实验内容:参考教材相关章节的内容和例题,编写一个流程较为合理、功能较为完善的信息系统(C/S结构)或电子商务系统(B/S结构)。三、操作步骤:1.成绩管理的数据库中建立相应的表用户登录表:userinfo学生表:student教师表:teacher课程表:course选课信息表:sctcourse2.登录界面的实现相关代码:namespaceStu{publicpartialclassfrmlogin:Form{pub
2、licfrmlogin(){InitializeComponent();this.BackgroundImage=Image.FromFile("C:\2.jpg");}classPowerControl{privatestaticstringname="";privatestaticstringpower="";privatestaticintcount=0;publicstaticvoidset_name(stringstrname){name=strname;}publicstaticstringget_name(){returnname;}publicstaticv
3、oidset_power(stringstrpower){power=strpower;}publicstaticstringget_power(){returnpower;}publicstaticvoidset_count(intc){count=c;}publicstaticintget_count(){returncount;}}privatevoidForm1_Load(objectsender,EventArgse){}privatevoidbutton1_Click(objectsender,EventArgse){if(txtname.Text=="")Mes
4、sageBox.Show("请输入用户名");else{if(txtpassword.Text=="")MessageBox.Show("请输入密码");else{try{stringmypath=Application.StartupPath+"\student.accdb";stringconstr="Provider=Microsoft.ACE.OLEDB.12.0;DataSource="+mypath;OleDbConnectionmycon=newOleDbConnection(constr);mycon.Open();stringmysql="selectus
5、ername,passwordfromuserinfowhereusername='"+txtname.Text+"'andpassword='"+txtpassword.Text+"'";OleDbCommandcmd=newOleDbCommand(mysql,mycon);OleDbDataReaderdr=cmd.ExecuteReader();if(dr.HasRows){dr.Close();stringnwmysql="select*fromuserinfowhereusername='"+txtname.Text+"'andpassword='"+txtpas
6、sword.Text+"'";OleDbCommandnwcmd=newOleDbCommand(nwmysql,mycon);OleDbDataReadernwdr=cmd.ExecuteReader();while(nwdr.Read()){this.Hide();PowerControl.set_count(1);frmmdimdi=newfrmmdi();mdi.Show();if(nwdr["lidentity"].ToString().Trim().Equals("a"))PowerControl.set_power(nwdr["lidentity"].ToStr
7、ing().Trim());elseif(nwdr["教师"].ToString().Trim().Equals("教师"))PowerControl.set_power(nwdr["lidentity"].ToString().Trim());elsePowerControl.set_power("学生");PowerControl.set_name(nwdr["username"].ToString());}intc=PowerControl.get_count();if(c==0){PowerCo
此文档下载收益归作者所有