• 大小: 8.57MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-06
  • 语言: C#
  • 标签: 数据库  

资源简介

基本sql和.net开发的学生信息管理系统,主要包括管理员端,学生端和教师端。每个客户端都有不同的权限。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender EventArgs e)
    {

    }
    
    protected void Button1_Click1(object sender EventArgs e)
    {
        string s1 s2 s3;
        s1 = TextBox1.Text;
        s2 = TextBox2.Text;
        s3 = RadioButtonList1.SelectedValue;
        Session[“uid“] = s1;
        string str1 = “Data Source=.;Initial Catalog=cmy;Integrated Security=True“;
        SqlConnection chen = new SqlConnection(str1);
        chen.Open();
        string str2 = “select *from usinfo where uid=‘“ + s1 + “‘and pass=‘“ + s2 + “‘and type=‘“ + s3 + “‘“;
        SqlCommand con = new SqlCommand(str2 chen);
        SqlDataReader sread = con.ExecuteReader();
        if (sread.Read())//判断登录成功
        {
            if (s3 == “0“)
            {
                Response.Write(“学生登录成功!“);
                Response.Redirect(“students.aspx“);
            }
            else if (s3 == “1“)
            {
                Response.Write(“班主任登录成功!“);
                Response.Redirect(“teachers.aspx“);
            }
            else if (s3 == “2“)
            {
                Response.Write(“管理员用户登录成功!“);
                Response.Redirect(“gly.aspx“);
            }
        }
        else
        {
            Response.Write(“用户名或密码错误,请重新输入!“);
        }

        chen.Close();
    }
    protected void Button2_Click(object sender EventArgs e)
    {
        TextBox1.Text = ““;
        TextBox2.Text = ““;
        
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-03-27 14:58  test\
     目录           0  2015-03-19 19:20  test\App_Data\
     文件    10485760  2015-03-27 14:04  test\App_Data\cmy.mdf
     文件     5242880  2015-03-27 14:04  test\App_Data\cmy_log.ldf
     文件        3094  2013-06-25 00:32  test\Default.aspx
     文件        1809  2013-06-23 09:32  test\Default.aspx.cs
     目录           0  2015-03-19 19:20  test\scripts\
     文件      239835  2010-05-04 06:45  test\scripts\jquery-1.4.1-vsdoc.js
     文件      168792  2010-05-04 06:45  test\scripts\jquery-1.4.1.js
     文件       71922  2010-05-04 06:45  test\scripts\jquery-1.4.1.min.js
     目录           0  2015-03-19 19:20  test\gcode\
     文件        3795  2013-06-24 22:35  test\gcode\w1.aspx
     文件        1710  2013-06-24 23:44  test\gcode\w1.aspx.cs
     文件        2140  2013-06-24 23:44  test\gcode\w2.aspx
     文件        1470  2013-06-24 23:49  test\gcode\w2.aspx.cs
     文件        2199  2013-06-25 18:48  test\gly.aspx
     文件        1209  2013-06-24 22:20  test\gly.aspx.cs
     目录           0  2015-03-19 19:20  test\scode\
     文件         439  2013-06-24 10:06  test\scode\w1.aspx
     文件         423  2013-06-24 10:06  test\scode\w1.aspx.cs
     文件        2214  2013-06-25 00:42  test\scode\w2.aspx
     文件        2117  2013-06-25 00:46  test\scode\w2.aspx.cs
     文件         732  2013-06-24 10:35  test\scode\w3.aspx
     文件        1471  2013-06-24 10:37  test\scode\w3.aspx.cs
     文件        1470  2015-03-22 22:42  test\scode\w4.aspx
     文件        2181  2015-03-22 22:42  test\scode\w4.aspx.cs
     文件        1482  2013-06-23 15:24  test\scode\w5.aspx
     文件        1302  2013-06-23 16:04  test\scode\w5.aspx.cs
     文件        3381  2013-06-23 14:38  test\scode\w6.aspx
     文件        2907  2015-03-27 13:59  test\scode\w6.aspx.cs
     文件        1800  2013-06-23 16:25  test\scode\w7.aspx
............此处省略35个文件信息

评论

共有 条评论