• 大小: 2.85MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-13
  • 语言: C#
  • 标签:

资源简介

本系统为用C#编写的学生信息管理系统,功能完善,界面友好,内附数据库表格,并配有PPT详解制作思路 PS:环境Vs 2005,SQL server 2005,登陆密码,详见T_User用户表中的用户编号和密码。 注意:一定要先将数据库表导入到SQL server 2005中,后才能运行,本程序可作为数据库的课程设计或者软件综合实习的作业。 如有疑问,可通过邮箱联系本人longzxr@126.com

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;

namespace Chap21
{
    /// 
    /// Admin类,继承自User,表示管理员
    /// 

    public class Admin : User
    {
        private string name;

        /// 
        /// 管理员姓名
        /// 

        public string Name
        {
            get
            {
                return name;
            }
            set
            {
                name = value;
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        529  2006-08-07 16:38  学生管理系统-张肖如\Chap21\Admin.cs

     文件     143360  2009-09-06 00:51  学生管理系统-张肖如\Chap21\bin\Debug\Chap21.exe

     文件     255488  2009-09-06 00:51  学生管理系统-张肖如\Chap21\bin\Debug\Chap21.pdb

     文件       5632  2005-12-08 14:51  学生管理系统-张肖如\Chap21\bin\Debug\Chap21.vshost.exe

     文件     163840  2009-09-10 22:23  学生管理系统-张肖如\Chap21\bin\Release\Chap21.exe

     文件     282112  2009-09-10 22:23  学生管理系统-张肖如\Chap21\bin\Release\Chap21.pdb

     文件       5632  2005-11-11 22:25  学生管理系统-张肖如\Chap21\bin\Release\Chap21.vshost.exe

     文件      11678  2009-09-07 22:57  学生管理系统-张肖如\Chap21\Chap21.csproj

     文件       8551  2009-09-03 13:18  学生管理系统-张肖如\Chap21\frmAddress.cs

     文件       8501  2009-09-03 13:18  学生管理系统-张肖如\Chap21\frmAddress.Designer.cs

     文件       5814  2009-09-03 13:18  学生管理系统-张肖如\Chap21\frmAddress.resx

     文件       8119  2009-09-08 23:33  学生管理系统-张肖如\Chap21\frmAverage.cs

     文件      12950  2009-09-08 23:31  学生管理系统-张肖如\Chap21\frmAverage.Designer.cs

     文件       6016  2009-09-08 23:31  学生管理系统-张肖如\Chap21\frmAverage.resx

     文件       4991  2008-12-26 08:57  学生管理系统-张肖如\Chap21\frmChange.cs

     文件       6490  2008-12-23 10:54  学生管理系统-张肖如\Chap21\frmChange.Designer.cs

     文件       5814  2008-12-23 10:54  学生管理系统-张肖如\Chap21\frmChange.resx

     文件      10701  2009-09-02 20:19  学生管理系统-张肖如\Chap21\frmClass.cs

     文件      21365  2009-09-02 20:19  学生管理系统-张肖如\Chap21\frmClass.Designer.cs

     文件       5814  2009-09-02 20:19  学生管理系统-张肖如\Chap21\frmClass.resx

     文件       8919  2009-09-08 23:43  学生管理系统-张肖如\Chap21\frmClassScore.cs

     文件      15173  2009-09-08 23:43  学生管理系统-张肖如\Chap21\frmClassScore.Designer.cs

     文件       6016  2009-09-08 23:43  学生管理系统-张肖如\Chap21\frmClassScore.resx

     文件      20234  2009-09-02 21:21  学生管理系统-张肖如\Chap21\frmCourse.cs

     文件      16864  2009-09-02 21:21  学生管理系统-张肖如\Chap21\frmCourse.Designer.cs

     文件       5814  2009-09-02 21:21  学生管理系统-张肖如\Chap21\frmCourse.resx

     文件       6703  2009-09-03 13:18  学生管理系统-张肖如\Chap21\frmCourseType.cs

     文件       8619  2009-09-03 13:18  学生管理系统-张肖如\Chap21\frmCourseType.Designer.cs

     文件       5814  2009-09-03 13:18  学生管理系统-张肖如\Chap21\frmCourseType.resx

     文件       2104  2008-12-26 13:38  学生管理系统-张肖如\Chap21\frmLock.cs

............此处省略124个文件信息

评论

共有 条评论