在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 学生管理信息系统(C#+SQL Server的源代码)

学生管理信息系统(C#+SQL Server的源代码)

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:4.38M
  • 下载次数:12
  • 浏览次数:86
  • 发布时间:2023-04-27
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2

实例介绍

【实例简介】学生管理信息系统(C# SQL Server的源代码)
采用三层架构模式,是VS平台下用C#语言编写的源代码,数据库管理系统采用的是SQL Server

【实例截图】

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

【核心代码】
文件清单
└── StudentManagement
    ├── BusinessRuler
    │   ├── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── BusinessRuler.dll
    │   │       ├── BusinessRuler.pdb
    │   │       ├── DataAccess.dll
    │   │       ├── DataAccess.pdb
    │   │       ├── Interop.Excel.dll
    │   │       ├── Interop.Microsoft.Office.Core.dll
    │   │       └── Interop.VBIDE.dll
    │   ├── BusinessRuler.csproj
    │   ├── BusinessRuler.csproj.user
    │   ├── ClassDiagram1.cd
    │   ├── Classes.cs
    │   ├── Course.cs
    │   ├── DataGridViewPrinter.cs
    │   ├── ExportExcel.cs
    │   ├── ImageManage.cs
    │   ├── obj
    │   │   ├── BusinessRuler.csproj.FileListAbsolute.txt
    │   │   ├── BusinessRuler.csproj.FileList.txt
    │   │   ├── Debug
    │   │   │   ├── buildinfo.inf
    │   │   │   ├── BusinessRuler.csproj.ResolveComReference.cache
    │   │   │   ├── BusinessRuler.dll
    │   │   │   ├── BusinessRuler.pdb
    │   │   │   ├── BusinessRuler.projdata
    │   │   │   ├── Interop.Excel.dll
    │   │   │   ├── Interop.Microsoft.Office.Core.dll
    │   │   │   ├── Interop.VBIDE.dll
    │   │   │   ├── Refactor
    │   │   │   │   └── BusinessRuler.dll
    │   │   │   ├── ResolveAssemblyReference.cache
    │   │   │   ├── temp
    │   │   │   └── TempPE
    │   │   ├── Interop.Excel.dll
    │   │   ├── Interop.Microsoft.Office.Core.dll
    │   │   ├── Interop.Office.dll
    │   │   └── Interop.VBIDE.dll
    │   ├── ReaderWirteConfig.cs
    │   ├── Score.cs
    │   ├── Student.cs
    │   ├── Subject.cs
    │   ├── Teacher.cs
    │   └── User.cs
    ├── DataAccess
    │   ├── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── DataAccess.dll
    │   │       └── DataAccess.pdb
    │   ├── Class.cs
    │   ├── ClassDiagram1.cd
    │   ├── Classes.cs
    │   ├── Course.cs
    │   ├── DataAccess.csproj
    │   ├── DataAccess.csproj.user
    │   ├── Login.cs
    │   ├── obj
    │   │   ├── DataAccess.csproj.FileListAbsolute.txt
    │   │   ├── DataAccess.csproj.FileList.txt
    │   │   └── Debug
    │   │       ├── buildinfo.inf
    │   │       ├── DataAccess.dll
    │   │       ├── DataAccess.pdb
    │   │       ├── DataAccess.projdata
    │   │       ├── Refactor
    │   │       │   └── DataAccess.dll
    │   │       ├── temp
    │   │       └── TempPE
    │   ├── Score.cs
    │   ├── SqlCommon.cs
    │   ├── Student.cs
    │   ├── Subject.cs
    │   ├── Teacher.cs
    │   └── User.cs
    ├── Interface
    │   ├── App.config
    │   ├── App.ico
    │   ├── bin
    │   │   └── Debug
    │   │       ├── BusinessRuler.dll
    │   │       ├── BusinessRuler.pdb
    │   │       ├── DataAccess.dll
    │   │       ├── DataAccess.pdb
    │   │       ├── Image
    │   │       │   ├── 100000.jpg
    │   │       │   ├── 100000.png
    │   │       │   ├── Thumbs.db
    │   │       │   ├── 老吴.png
    │   │       │   ├── 老李.png
    │   │       │   └── 老谭.png
    │   │       ├── Interface.exe
    │   │       ├── Interface.exe.config
    │   │       ├── Interface.pdb
    │   │       ├── Interface.vshost.exe
    │   │       ├── Interface.vshost.exe.config
    │   │       ├── Interop.Excel.dll
    │   │       ├── Interop.Microsoft.Office.Core.dll
    │   │       └── Interop.VBIDE.dll
    │   ├── Class
    │   │   ├── FrmAddClass.cs
    │   │   ├── FrmAddClass.Designer.cs
    │   │   ├── FrmAddClass.resx
    │   │   ├── FrmClass.cs
    │   │   ├── FrmClass.Designer.cs
    │   │   ├── FrmClass.resx
    │   │   ├── FrmFindClass.cs
    │   │   ├── FrmFindClass.Designer.cs
    │   │   ├── FrmFindClass.resx
    │   │   ├── FrmModifyClass.cs
    │   │   ├── FrmModifyClass.Designer.cs
    │   │   └── FrmModifyClass.resx
    │   ├── Course
    │   │   ├── FrmAddCourse.cs
    │   │   ├── FrmAddCourse.Designer.cs
    │   │   ├── FrmAddCourse.resx
    │   │   ├── FrmCourse.cs
    │   │   ├── FrmCourse.Designer.cs
    │   │   ├── FrmCourse.resx
    │   │   ├── FrmFindCourse.cs
    │   │   ├── FrmFindCourse.Designer.cs
    │   │   ├── FrmFindCourse.resx
    │   │   ├── FrmModifyCourse.cs
    │   │   ├── FrmModifyCourse.Designer.cs
    │   │   └── FrmModifyCourse.resx
    │   ├── FrmChooseClass.cs
    │   ├── FrmChooseClass.Designer.cs
    │   ├── FrmChooseClass.resx
    │   ├── FrmCopyright.cs
    │   ├── FrmCopyright.Designer.cs
    │   ├── FrmCopyright.resx
    │   ├── FrmExportReport.cs
    │   ├── FrmExportReport.Designer.cs
    │   ├── FrmExportReport.resx
    │   ├── FrmMain.cs
    │   ├── FrmMain.Designer.cs
    │   ├── FrmMain.resx
    │   ├── Interface.csproj
    │   ├── Interface.csproj.user
    │   ├── obj
    │   │   ├── Debug
    │   │   │   ├── Interface.csproj.GenerateResource.Cache
    │   │   │   ├── Interface.csproj.ResolveComReference.cache
    │   │   │   ├── Interface.exe
    │   │   │   ├── Interface.FrmAddClass.resources
    │   │   │   ├── Interface.FrmAddCourse.resources
    │   │   │   ├── Interface.FrmAddScore.resources
    │   │   │   ├── Interface.FrmAddStudent.resources
    │   │   │   ├── Interface.FrmAddSubject.resources
    │   │   │   ├── Interface.FrmAddTeacher.resources
    │   │   │   ├── Interface.FrmAddUser.resources
    │   │   │   ├── Interface.FrmChangePwd.resources
    │   │   │   ├── Interface.FrmChooseClass.resources
    │   │   │   ├── Interface.FrmClass.resources
    │   │   │   ├── Interface.FrmCopyright.resources
    │   │   │   ├── Interface.FrmCourse.resources
    │   │   │   ├── Interface.FrmExportReport.resources
    │   │   │   ├── Interface.FrmFindClass.resources
    │   │   │   ├── Interface.FrmFindCourse.resources
    │   │   │   ├── Interface.FrmFindScore.resources
    │   │   │   ├── Interface.FrmFindStudent.resources
    │   │   │   ├── Interface.FrmFindSubject.resources
    │   │   │   ├── Interface.FrmFindTeacher.resources
    │   │   │   ├── Interface.FrmFindUser.resources
    │   │   │   ├── Interface.FrmLogin.resources
    │   │   │   ├── Interface.FrmMain.resources
    │   │   │   ├── Interface.FrmModifyClass.resources
    │   │   │   ├── Interface.FrmModifyCourse.resources
    │   │   │   ├── Interface.FrmModifyScore.resources
    │   │   │   ├── Interface.FrmModifyStudent.resources
    │   │   │   ├── Interface.FrmModifySubject.resources
    │   │   │   ├── Interface.FrmModifyTeacher.resources
    │   │   │   ├── Interface.FrmModifyUser.resources
    │   │   │   ├── Interface.FrmOptions.resources
    │   │   │   ├── Interface.FrmScore.resources
    │   │   │   ├── Interface.FrmStudent.resources
    │   │   │   ├── Interface.FrmSubject.resources
    │   │   │   ├── Interface.FrmTeacher.resources
    │   │   │   ├── Interface.FrmUser.resources
    │   │   │   ├── Interface.FrmViewImage.resources
    │   │   │   ├── Interface.pdb
    │   │   │   ├── Interface.Properties.Resources.resources
    │   │   │   ├── Refactor
    │   │   │   ├── ResolveAssemblyReference.cache
    │   │   │   └── TempPE
    │   │   │       └── Properties.Resources.Designer.cs.dll
    │   │   ├── Interface.csproj.FileListAbsolute.txt
    │   │   └── Interface.csproj.FileList.txt
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── Resources
    │   │   └── print.image.bmp
    │   ├── Score
    │   │   ├── FrmAddScore.cs
    │   │   ├── FrmAddScore.Designer.cs
    │   │   ├── FrmAddScore.resx
    │   │   ├── FrmFindScore.cs
    │   │   ├── FrmFindScore.Designer.cs
    │   │   ├── FrmFindScore.resx
    │   │   ├── FrmModifyScore.cs
    │   │   ├── FrmModifyScore.Designer.cs
    │   │   ├── FrmModifyScore.resx
    │   │   ├── FrmScore.cs
    │   │   ├── FrmScore.Designer.cs
    │   │   └── FrmScore.resx
    │   ├── Student
    │   │   ├── FrmAddStudent.cs
    │   │   ├── FrmAddStudent.Designer.cs
    │   │   ├── FrmAddStudent.resx
    │   │   ├── FrmFindStudent.cs
    │   │   ├── FrmFindStudent.Designer.cs
    │   │   ├── FrmFindStudent.resx
    │   │   ├── FrmModifyStudent.cs
    │   │   ├── FrmModifyStudent.Designer.cs
    │   │   ├── FrmModifyStudent.resx
    │   │   ├── FrmStudent.cs
    │   │   ├── FrmStudent.Designer.cs
    │   │   ├── FrmStudent.resx
    │   │   ├── FrmViewImage.cs
    │   │   ├── FrmViewImage.Designer.cs
    │   │   └── FrmViewImage.resx
    │   ├── Subject
    │   │   ├── FrmAddSubject.cs
    │   │   ├── FrmAddSubject.Designer.cs
    │   │   ├── FrmAddSubject.resx
    │   │   ├── FrmFindSubject.cs
    │   │   ├── FrmFindSubject.Designer.cs
    │   │   ├── FrmFindSubject.resx
    │   │   ├── FrmModifySubject.cs
    │   │   ├── FrmModifySubject.Designer.cs
    │   │   ├── FrmModifySubject.resx
    │   │   ├── FrmSubject.cs
    │   │   ├── FrmSubject.Designer.cs
    │   │   └── FrmSubject.resx
    │   ├── System
    │   │   ├── FrmAddUser.cs
    │   │   ├── FrmAddUser.Designer.cs
    │   │   ├── FrmAddUser.resx
    │   │   ├── FrmChangePwd.cs
    │   │   ├── FrmChangePwd.Designer.cs
    │   │   ├── FrmChangePwd.resx
    │   │   ├── FrmFindUser.cs
    │   │   ├── FrmFindUser.Designer.cs
    │   │   ├── FrmFindUser.resx
    │   │   ├── FrmLogin.cs
    │   │   ├── FrmLogin.Designer.cs
    │   │   ├── FrmLogin.resx
    │   │   ├── FrmModifyUser.cs
    │   │   ├── FrmModifyUser.Designer.cs
    │   │   ├── FrmModifyUser.resx
    │   │   ├── FrmOptions.cs
    │   │   ├── FrmOptions.Designer.cs
    │   │   ├── FrmOptions.resx
    │   │   ├── FrmUser.cs
    │   │   ├── FrmUser.Designer.cs
    │   │   └── FrmUser.resx
    │   ├── Teacher
    │   │   ├── FrmAddTeacher.cs
    │   │   ├── FrmAddTeacher.Designer.cs
    │   │   ├── FrmAddTeacher.resx
    │   │   ├── FrmFindTeacher.cs
    │   │   ├── FrmFindTeacher.Designer.cs
    │   │   ├── FrmFindTeacher.resx
    │   │   ├── FrmModifyTeacher.cs
    │   │   ├── FrmModifyTeacher.Designer.cs
    │   │   ├── FrmModifyTeacher.resx
    │   │   ├── FrmTeacher.cs
    │   │   ├── FrmTeacher.Designer.cs
    │   │   └── FrmTeacher.resx
    │   └── Thumbs.db
    ├── Readme.txt
    ├── StudentManagement.sln
    ├── StudentManagement.suo
    └── 源数据库
        ├── studentManager_Data.MDF
        └── studentManager_Log.LDF

35 directories, 249 files

实例下载地址

学生管理信息系统(C#+SQL Server的源代码)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警