欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    2022年学生信息管理系统系统源代码.pdf

    • 资源ID:14728385       资源大小:195.62KB        全文页数:34页
    • 资源格式: PDF        下载积分:4.3金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要4.3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    2022年学生信息管理系统系统源代码.pdf

    学生信息管理系统系统源代码系统源代码一、登录界面代码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; using System 、 Data 、 SqlClient; public partial class login : System、 Web、 UI 、 Page protected void txtid_Click(object sender, EventArgs e) txtid 、 Text = ; txtpassword 、 Text = ; protected void Button1_Click(object sender, EventArgs e) string strconn = ConfigurationManager、 AppSettingsconnStr; SqlConnection conn = new SqlConnection(strconn); conn 、 Open(); DataSet ds=new DataSet () ; SqlDataAdapter da = new SqlDataAdapter(select * from users where userid= + txtid 、 Text + and userpwd= + txtpassword、 Text + , conn); da、 Fill(ds); 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 1 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码if (ds 、Tables0 、 Rows 、Count=0) Label3 、 Text = 账号或密码错误,请重新输入!; else Session userid=txtid 、 Text ; Sessionuserpwd = txtpassword、 Text; Sessionusername = ds、 Tables0 、 Rows0username、 ToString(); Sessionuserpower = ds、Tables0 、 Rows0userpower、 ToString(); if (Sessionuserpower、ToString () = 0) Response 、 Redirect(admin/index、aspx); else if (Sessionuserpower、 ToString() = 1) Response 、 Redirect(student/index、 aspx); else Label3 、 Text = 对不起 ,权限验证失败; conn 、 Close(); ds、 Clear (); 二、添加课程页面代码using System; using System 、 Data; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 2 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码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; using System 、 Data 、 SqlClient; public partial class addcourse : System、 Web 、 UI 、 Page SqlCommand mycmd; SqlConnection conn; protected void Page_Load(object sender, EventArgs e) courseid 、 Attributes 、 Add(onblur, checkcourseid(); string strconn = ConfigurationManager、 AppSettingsconnStr; conn = new SqlConnection(strconn); protected void Button1_Click(object sender, EventArgs e) if (courseid、 Text 、 ToString() = ) Label7 、Text = 课程号不能为空; else string sqlstr = ; sqlstr = insert into course(courseid,coursename,coursetime,fen,type,teacher)values( + courseid、Text + , + 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 3 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码coursename 、 Text + , + coursetime、 Text + , + fen、 Text + , + type、 Text + , + teacher 、 Text + ); conn、 Open(); mycmd = new SqlCommand(sqlstr, conn); mycmd 、 Dispose(); try mycmd 、 ExecuteNonQuery(); Response 、 Write(javascript:alert(添加成功!);); catch (SqlException) Response 、 Write(javascript:alert(添加失败!);); finally conn 、 Close(); sqlstr = ; protected void Button2_Click(object sender, EventArgs e) courseid 、 Text = ; coursename 、Text = ; coursetime 、 Text = ; fen 、 Text = ; type、 Text = ; protected void Button3_Click(object sender, EventArgs e) 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 4 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码 Response、 Redirect(course、 aspx); 三、添加成绩程序代码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; using System 、 Data 、 SqlClient; public partial class addscore : System、 Web 、 UI 、 Page SqlCommand mycmd; SqlConnection conn; protected void Page_Load(object sender, EventArgs e) string strconn = ConfigurationManager、 AppSettingsconnStr; conn = new SqlConnection(strconn); protected void Button1_Click(object sender, EventArgs e) if (userid 、 SelectedValue 、 ToString ()= ) Label11 、 Text = 学号不能为空; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 5 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码 else string sqlstr = ; sqlstr = insert into score(userid,username,courseid,coursename,score,year)values( + userid、 SelectedValue + , + username、 Text + , + txtcourseid、 SelectedValue + , + coursename、 Text + , + score、 Text + , + txtyear、 SelectedValue + ); conn、 Open(); mycmd = new SqlCommand(sqlstr, conn); mycmd 、 Dispose(); try mycmd 、 ExecuteNonQuery(); Response 、 Write(javascript:alert(添加成功!);); catch (SqlException) Response 、 Write(javascript:alert(添加失败!);); finally conn 、 Close(); sqlstr = ; protected void Button2_Click(object sender, EventArgs e) username 、 Text = ; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 6 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码coursename 、Text = ; score、 Text = ; txtyear 、 Text = ; protected void Button3_Click(object sender, EventArgs e) Response、 Redirect(score、 aspx); protected void userid_SelectedIndexChanged(object sender, EventArgs e) string sqlstr = ; sqlstr = select username from students where userid= + userid、 SelectedValue + ; conn 、 Open(); mycmd = new SqlCommand(sqlstr, conn); mycmd 、 Dispose(); SqlDataReader da; da = mycmd 、 ExecuteReader(); while (da 、 Read() username 、Text = dausername、 ToString(); protected void txtcourseid_SelectedIndexChanged(object sender, EventArgs e) string sqlstr = ; sqlstr = select coursename from course where courseid= + txtcourseid、SelectedValue + ; conn 、 Open(); mycmd = new SqlCommand(sqlstr, conn); 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 7 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码mycmd 、 Dispose(); SqlDataReader da; da = mycmd 、 ExecuteReader(); while (da 、 Read() coursename 、 Text = dacoursename、 ToString(); 四、添加学生程序代码using System; using System 、 IO; using System 、 Text; 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; using System 、 Data 、 SqlClient; public partial class addstudent : System、 Web 、 UI 、 Page SqlCommand mycmd; protected void Page_Load(object sender, EventArgs e) userid 、 Attributes 、 Add(onblur, checkuserid(); string strconn = ConfigurationManager、 AppSettingsconnStr; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 8 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码SqlConnection conn = new SqlConnection(strconn); protected void Button1_Click(object sender, EventArgs e) if (userid 、 Text 、 ToString() = ) return; string strconn = ConfigurationManager、 AppSettingsconnStr; SqlConnection conn = new SqlConnection(strconn); string sqlstr = ; string sql = ; sqlstr = insert into students(userid,username,sex,minzu,birthday,class,comefrom,beizhu,xuey,zhuany,tel,idc,zhengzmm,zhiw,huoj,weij)values( + userid、 Text + , + txtusername、Text + , + txtsex、SelectedItem 、 Value + , + txtminzu、 Text + , + txtbirthday、 Text + , + txtclass、Text + , + txtcomefrom、 Text + , + txtbeizhu、 Text + , + txtxuey、 SelectedValue + , + txtzhuany、 SelectedValue + , + txttel、 Text + , + txtidc、 Text + , + txtzzmm 、 SelectedValue + , + txtzhiw、 Text + , + txthuoj、 Text + , + txtweij、Text + ); conn 、 Open(); mycmd = new SqlCommand(sqlstr, conn); mycmd 、 Dispose(); string name = this、获取上传文件的名称string type = name、 Substring(name、 LastIndexOf() + 1);/获取上传文件的后缀string ipath = Server、 MapPath(images/) + DateTime、 Now 、ToString(yyyyMMddhhmmss) + name; string wpath = images + DateTime、 Now 、 ToString(yyyyMMddhhmmss) + name; string query1 = insert into images(userid,path) values( + userid、 Text + ,path); 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 9 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码(ipath); / 服务器保存路径SqlCommand cm = new SqlCommand(query1); cm、 Connection = conn; cm、 Parameters 、 Add(path, SqlDbType、 VarChar, 50); cm、 Parameterspath、 Value = wpath; cm、 ExecuteNonQuery(); / this 、 lb_info 、 Text = 上传成功!; try mycmd 、 ExecuteNonQuery(); string sqlstr1 = ; sqlstr1 = insert into users(userid,username)values( + userid、 Text + , + txtusername 、 Text + ) ; SqlCommand mycmd1 = new SqlCommand(sqlstr1, conn); mycmd1 、 Dispose(); try mycmd1 、 ExecuteNonQuery(); Response 、 Write(javascript:alert(添加成功!);); catch (SqlException) Response 、 Write(javascript:alert(添加失败!);); finally sqlstr1 = ; catch (SqlException) 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 10 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码 Response 、Write(javascript:alert(添加失败!);); finally conn、 Close(); sqlstr = ; protected void Button2_Click(object sender, EventArgs e) userid 、 Text = ; txtusername 、 Text = ; txtminzu 、 Text = ; txtbirthday、 Text = ; txtclass 、 Text = ; txtcomefrom、 Text = ; txtbeizhu 、 Text = ; protected void Button3_Click(object sender, EventArgs e) Response、 Redirect(student、 aspx); 五、检查课程号唯一性程序代码using System; using System 、 Data; using System 、 Configuration; using System 、 Collections; using System 、 Web; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 11 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码using System 、 Web 、 Security; using System 、 Web 、UI; using System 、 Web 、UI 、 WebControls; using System 、 Web 、UI 、 WebControls 、 WebParts; using System 、 Web 、UI 、 HtmlControls; using System 、 Data 、 SqlClient; public partial class checkcourseid : System、 Web 、 UI 、Page protected void Page_Load(object sender, EventArgs e) Response、 Expires = 0; string strconn = ConfigurationManager、 AppSettingsconnStr; SqlConnection conn = new SqlConnection(strconn); string nam = Request、 QueryStringname、 ToString(); string sql = select courseid from course where courseid= + nam + ;SqlCommand DBHelper; DBHelper = new SqlCommand(sql, conn); conn 、 Open(); SqlDataReader dr = DBHelper、 ExecuteReader(); if (dr 、 Read() Response 、 Write(该课程号已经存在,请换一个); else Response 、 Write(该课程号可以使用); dr、 Close(); 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 12 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码六、检查学号唯一性程序代码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; using System 、 Data 、 SqlClient; public partial class checkuser : System、 Web 、 UI 、 Page protected void Page_Load(object sender, EventArgs e) Response、 Expires = 0; string strconn = ConfigurationManager、 AppSettingsconnStr; SqlConnection conn = new SqlConnection(strconn); string nam = Request、 QueryStringname、 ToString(); string sql = select userid from students where userid= + nam + ; SqlCommand DBHelper; DBHelper = new SqlCommand(sql, conn); conn 、 Open(); SqlDataReader dr = DBHelper、 ExecuteReader(); if (dr 、 Read() Response 、 Write(该学号已经存在,请换一个); else 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 13 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码 Response 、 Write(该学号可以使用); dr、 Close(); 七、课程信息程序代码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; using System 、 Data 、 SqlClient; public partial class course : System、 Web 、 UI 、 Page SqlConnection conn; SqlDataReader getdata; protected void Page_Load(object sender, EventArgs e) string strconn = ConfigurationManager、 AppSettingsconnStr; conn = new SqlConnection(strconn); SqlDataReader getdata; SqlCommand mycmd; DataSet ds = new DataSet(); string sql = ; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 14 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码sql = select * from course order by courseid; mycmd = new SqlCommand(sql, conn); conn 、 Open(); getdata = mycmd、 ExecuteReader(); grdMain 、 DataSource = getdata; grdMain 、 DataBind(); mycmd 、 Connection 、Close(); conn 、 Close(); mycmd 、 Dispose(); protected void Button1_Click(object sender, EventArgs e) DataSet ds; SqlDataReader da; string strsql = ; SqlCommand cmd; conn 、 Open(); strsql = select * from course where courseid= + courseid、 Text + or coursename like + coursename、 Text + ; cmd = new SqlCommand(strsql, conn); da = cmd 、 ExecuteReader(); Datagrid1 、 DataSource = da; Datagrid1 、 DataBind(); conn 、 Close(); cmd、 Dispose(); cmd、 Connection 、 Close(); 八、编辑、删除学生信息程序代码using System; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 15 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码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; using System 、 Data 、 SqlClient; public partial class images_editstudent : System、 Web 、 UI 、 Page SqlCommand cmd; SqlCommand cmd2; protected void Page_Load(object sender, EventArgs e) if (!this、 IsPostBack) string sql = ; SqlDataReader reader; string uid = ; uid = Page 、 Requestid; string strconn = ConfigurationManager、 AppSettingsconnStr; SqlConnection conn = new SqlConnection(strconn); sql = select * from students where userid= + uid + ; SqlCommand cmd; cmd = new SqlCommand(sql, conn); conn、 Open(); reader = cmd 、 ExecuteReader(); while (reader 、 Read() 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 16 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码 userid 、 Text = readeruserId、 ToString(); txtusername 、 Text = readerusername、 ToString(); txtsex 、 SelectedValue = readersex、 ToString(); txtminzu 、 Text = readerminzu、 ToString(); txtbirthday、 Text = readerbirthday、 ToString(); txtclass 、 Text = readerclass、 ToString(); txtcomefrom、 Text = readercomefrom、 ToString(); txtxuey 、 Text = readerxuey、 ToString(); txtzhuany 、 Text = readerzhuany、 ToString(); txttel 、 Text = readertel、 ToString(); txtidc 、 Text = readeridc、 ToString(); cmd、 Dispose(); sql = ; conn、 Close(); protected void Button1_Click(object sender, EventArgs e) string uid=; uid=Page 、 Request id; string strconn = ConfigurationManager、 AppSettingsconnStr; SqlConnection conn = new SqlConnection(strconn); string sql=; sql = update students set userid= + userid、 Text + ,username= + txtusername 、Text + ,minzu= + txtminzu、 Text + ,sex= + txtsex、SelectedItem 、Value + ,birthday= + txtbirthday、 Text + ,class= + txtclass、 Text + ,comefrom= + txtcomefrom、 Text + ,beizhu= + txtbeizhu、 Text + ,xuey= + txtxuey、Text + ,zhuany= + txtzhuany、 Text + ,tel= + txttel、Text + ,idc= + txtidc、 Text + 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 17 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码,zhengzmm= + txtzzmm、 SelectedValue + where userid= + uid + ; cmd=new SqlCommand (sql,conn ); conn 、 Open(); try cmd、 ExecuteNonQuery(); Label11 、 Stylecolo

    注意事项

    本文(2022年学生信息管理系统系统源代码.pdf)为本站会员(Che****ry)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开