在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 学生管理信息系统(c#).rar

学生管理信息系统(c#).rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.66M
  • 下载次数:1
  • 浏览次数:49
  • 发布时间:2021-11-25
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
配置方案: 测试环境:IIS 6.0/.net Framework 1.1.4322 如你是server系统: 1.在IIS中新建网站,将主目录指向StudentsMIS.Web; 2.用写字板编辑StudentsMIS.Web\Web.config文件,将“F:\Web Root\学生管理信息系统\StudentsMIS.DataBase\StudentsMIS.mdb”改为现在新的地址; 3.用写字板编辑StudentsMIS.Web\StudentsMIS.Web.csproj.webinfo文件,将“localhost:83”改为你新建站点的地址; 4.用写字板编辑学生管理信息系统.sln文件,将“localhost:83”改为你新建站点的地址; 5.双击学生管理信息系统.sln可打开解决方案。 如你是个人系统(以Win XP为例): 把此文件所在的当前目录复制到C:\Inetpub\wwwroot下,在IIS中,默认网站,右击属性->主目录->改为C:\Inetpub\wwwroot\StudentsMIS.Web; 2.用写字板编辑StudentsMIS.Web\Web.config文件,将“F:\Web Root\学生管理信息系统\StudentsMIS.DataBase\StudentsMIS.mdb”改为“C:\Inetpub\wwwroot\StudentsMIS.DataBase\StudentsMIS.mdb”; 3.用写字板编辑StudentsMIS.Web\StudentsMIS.Web.csproj.webinfo文件,将“localhost:83”改为“localhost”; 4.用写字板编辑学生管理信息系统.sln文件,将“localhost:83”改为“localhost”; 5.双击学生管理信息系统.sln可打开解决方案。
【实例截图】
【核心代码】
16359647612609164252.rar
└── mini_smis
├── Royal
│   ├── SMS.Courseware
│   │   └── 开发实例 – 学生管理信息系统.ppt
│   ├── SMS.DataBase
│   │   └── StudentsMIS.mdb
│   ├── SMS.DataBaseDesign
│   │   ├── crebas.sql
│   │   ├── 学生管理系统概念数据模型.cdm
│   │   └── 学生管理系统物理数据模型.pdm
│   ├── SMS.Web
│   │   ├── Backup
│   │   │   ├── StudentsMIS.Business
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── AwardEntity.cs
│   │   │   │   ├── AwardManager.cs
│   │   │   │   ├── ChangeEntity.cs
│   │   │   │   ├── ChangeManager.cs
│   │   │   │   ├── ChangeTypeManager.cs
│   │   │   │   ├── ClassEntity.cs
│   │   │   │   ├── ClassManager.cs
│   │   │   │   ├── CollegeManager.cs
│   │   │   │   ├── IEntity.cs
│   │   │   │   ├── IManager.cs
│   │   │   │   ├── PunishmentEntity.cs
│   │   │   │   ├── PunishmentManager.cs
│   │   │   │   ├── PunishmentTypeManager.cs
│   │   │   │   ├── SpecialityManager.cs
│   │   │   │   ├── StudentEntity.cs
│   │   │   │   ├── StudentManager.cs
│   │   │   │   ├── StudentsMIS.Business.csproj
│   │   │   │   └── StudentsMIS.Business.csproj.user
│   │   │   ├── StudentsMIS.CommonClassLibrary
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── BindDownList.cs
│   │   │   │   ├── FormatDateTime.cs
│   │   │   │   ├── StringValidation.cs
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.csproj
│   │   │   │   └── StudentsMIS.CommonClassLibrary.csproj.user
│   │   │   ├── StudentsMIS.DataAccess
│   │   │   │   ├── aa.cs
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── CommandBuilder.cs
│   │   │   │   ├── CommandCloser.cs
│   │   │   │   ├── ConnectionBuilder.cs
│   │   │   │   ├── StudentsMIS.DataAccess.csproj
│   │   │   │   └── StudentsMIS.DataAccess.csproj.user
│   │   │   ├── StudentsMIS.Security
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── BaseAdminPage.cs
│   │   │   │   ├── BaseUserPage.cs
│   │   │   │   ├── StudentsMIS.Security.csproj
│   │   │   │   ├── StudentsMIS.Security.csproj.user
│   │   │   │   ├── User.cs
│   │   │   │   ├── UserEntity.cs
│   │   │   │   └── UserManager.cs
│   │   │   ├── StudentsMIS.Web
│   │   │   ├── 学生管理信息系统.sln
│   │   │   └── 学生管理信息系统.suo
│   │   ├── readme.txt
│   │   ├── StudentsMIS.Business
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── AwardEntity.cs
│   │   │   ├── AwardManager.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.Business.dll
│   │   │   │   ├── StudentsMIS.Business.pdb
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   └── StudentsMIS.DataAccess.pdb
│   │   │   ├── ChangeEntity.cs
│   │   │   ├── ChangeManager.cs
│   │   │   ├── ChangeTypeManager.cs
│   │   │   ├── ClassEntity.cs
│   │   │   ├── ClassManager.cs
│   │   │   ├── CollegeManager.cs
│   │   │   ├── IEntity.cs
│   │   │   ├── IManager.cs
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── StudentsMIS.Business.csproj.FileListAbsolute.txt
│   │   │   │   ├── StudentsMIS.Business.dll
│   │   │   │   ├── StudentsMIS.Business.pdb
│   │   │   │   ├── StudentsMIS.Business.projdata
│   │   │   │   ├── StudentsMIS.Business.projdata1
│   │   │   │   ├── temp
│   │   │   │   └── TempPE
│   │   │   ├── PunishmentEntity.cs
│   │   │   ├── PunishmentManager.cs
│   │   │   ├── PunishmentTypeManager.cs
│   │   │   ├── SpecialityManager.cs
│   │   │   ├── StudentEntity.cs
│   │   │   ├── StudentManager.cs
│   │   │   ├── StudentsMIS.Business.csproj
│   │   │   └── StudentsMIS.Business.csproj.user
│   │   ├── StudentsMIS.CommonClassLibrary
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.dll
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.pdb
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   └── StudentsMIS.DataAccess.pdb
│   │   │   ├── BindDownList.cs
│   │   │   ├── FormatDateTime.cs
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.csproj.FileListAbsolute.txt
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.dll
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.pdb
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.projdata
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.projdata1
│   │   │   │   ├── temp
│   │   │   │   └── TempPE
│   │   │   ├── StringValidation.cs
│   │   │   ├── StudentsMIS.CommonClassLibrary.csproj
│   │   │   └── StudentsMIS.CommonClassLibrary.csproj.user
│   │   ├── StudentsMIS.DataAccess
│   │   │   ├── aa.cs
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   ├── StudentsMIS.DataAccess.pdb
│   │   │   │   └── StudentsMIS.mdb
│   │   │   ├── CommandBuilder.cs
│   │   │   ├── CommandCloser.cs
│   │   │   ├── ConnectionBuilder.cs
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.DataAccess.csproj.FileListAbsolute.txt
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   ├── StudentsMIS.DataAccess.pdb
│   │   │   │   ├── StudentsMIS.DataAccess.projdata
│   │   │   │   ├── StudentsMIS.DataAccess.projdata1
│   │   │   │   ├── temp
│   │   │   │   └── TempPE
│   │   │   ├── StudentsMIS.DataAccess.csproj
│   │   │   └── StudentsMIS.DataAccess.csproj.user
│   │   ├── StudentsMIS.DataBase
│   │   │   ├── StudentsMIS.ldb
│   │   │   └── StudentsMIS.mdb
│   │   ├── StudentsMIS.Security
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── BaseAdminPage.cs
│   │   │   ├── BaseUserPage.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   ├── StudentsMIS.DataAccess.pdb
│   │   │   │   ├── StudentsMIS.Security.dll
│   │   │   │   └── StudentsMIS.Security.pdb
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── StudentsMIS.Security.csproj.FileListAbsolute.txt
│   │   │   │   ├── StudentsMIS.Security.dll
│   │   │   │   ├── StudentsMIS.Security.pdb
│   │   │   │   ├── StudentsMIS.Security.projdata
│   │   │   │   ├── StudentsMIS.Security.projdata1
│   │   │   │   ├── temp
│   │   │   │   └── TempPE
│   │   │   ├── StudentsMIS.Security.csproj
│   │   │   ├── StudentsMIS.Security.csproj.user
│   │   │   ├── User.cs
│   │   │   ├── UserEntity.cs
│   │   │   └── UserManager.cs
│   │   ├── StudentsMIS.Web
│   │   │   ├── aspnet_client
│   │   │   │   └── system_web
│   │   │   │   └── 2_0_50215
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── bin
│   │   │   │   ├── StudentsMIS.Business.dll
│   │   │   │   ├── StudentsMIS.Business.pdb
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.dll
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.pdb
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   ├── StudentsMIS.DataAccess.pdb
│   │   │   │   ├── StudentsMIS.Security.dll
│   │   │   │   ├── StudentsMIS.Security.pdb
│   │   │   │   ├── StudentsMIS.Web.dll
│   │   │   │   └── StudentsMIS.Web.pdb
│   │   │   ├── Controls
│   │   │   │   ├── FooterControl.ascx
│   │   │   │   ├── FooterControl.ascx.cs
│   │   │   │   ├── FooterControl.ascx.resx
│   │   │   │   ├── MenuControl.ascx
│   │   │   │   ├── MenuControl.ascx.cs
│   │   │   │   └── MenuControl.ascx.resx
│   │   │   ├── Global.asax
│   │   │   ├── Global.asax.cs
│   │   │   ├── Global.asax.resx
│   │   │   ├── images
│   │   │   │   ├── bgcolor.gif
│   │   │   │   ├── login_bg.jpg
│   │   │   │   └── SystemName.gif
│   │   │   ├── Index.aspx
│   │   │   ├── Index.aspx.cs
│   │   │   ├── Index.aspx.resx
│   │   │   ├── OrganizationSettings
│   │   │   │   ├── ClassSetting.aspx
│   │   │   │   ├── ClassSetting.aspx.cs
│   │   │   │   ├── ClassSetting.aspx.resx
│   │   │   │   ├── CollegeSetting.aspx
│   │   │   │   ├── CollegeSetting.aspx.cs
│   │   │   │   ├── CollegeSetting.aspx.resx
│   │   │   │   ├── SpecialitySetting.aspx
│   │   │   │   ├── SpecialitySetting.aspx.cs
│   │   │   │   └── SpecialitySetting.aspx.resx
│   │   │   ├── StudentsManagement
│   │   │   │   ├── StudentsChange.aspx
│   │   │   │   ├── StudentsChange.aspx.cs
│   │   │   │   ├── StudentsChange.aspx.resx
│   │   │   │   ├── StudentsInsert.aspx
│   │   │   │   ├── StudentsInsert.aspx.cs
│   │   │   │   ├── StudentsInsert.aspx.resx
│   │   │   │   ├── StudentsManagement.aspx
│   │   │   │   ├── StudentsManagement.aspx.cs
│   │   │   │   ├── StudentsManagement.aspx.resx
│   │   │   │   ├── StudentsSelect.aspx
│   │   │   │   ├── StudentsSelect.aspx.cs
│   │   │   │   ├── StudentsSelect.aspx.resx
│   │   │   │   ├── StudentsUpdate.aspx
│   │   │   │   ├── StudentsUpdate.aspx.cs
│   │   │   │   └── StudentsUpdate.aspx.resx
│   │   │   ├── StudentsMIS.Web.csproj
│   │   │   ├── StudentsMIS.Web.csproj.webinfo
│   │   │   ├── StyleSheets
│   │   │   │   └── StyleSheet.css
│   │   │   ├── SystemManagement
│   │   │   │   ├── UserLogin.aspx
│   │   │   │   ├── UserLogin.aspx.cs
│   │   │   │   ├── UserLogin.aspx.resx
│   │   │   │   ├── UserPwdUpdate.aspx
│   │   │   │   ├── UserPwdUpdate.aspx.cs
│   │   │   │   ├── UserPwdUpdate.aspx.resx
│   │   │   │   ├── UsersManagement.aspx
│   │   │   │   ├── UsersManagement.aspx.cs
│   │   │   │   └── UsersManagement.aspx.resx
│   │   │   ├── TypesSettings
│   │   │   │   ├── ChangeTypeSetting.aspx
│   │   │   │   ├── ChangeTypeSetting.aspx.cs
│   │   │   │   ├── ChangeTypeSetting.aspx.resx
│   │   │   │   ├── PunishmentTypeSetting.aspx
│   │   │   │   ├── PunishmentTypeSetting.aspx.cs
│   │   │   │   └── PunishmentTypeSetting.aspx.resx
│   │   │   ├── Web.config
│   │   │   ├── WebForm1.aspx
│   │   │   ├── WebForm1.aspx.cs
│   │   │   └── WebForm1.aspx.resx
│   │   ├── UpgradeLog.XML
│   │   ├── _UpgradeReport_Files
│   │   │   ├── UpgradeReport.css
│   │   │   ├── UpgradeReport_Minus.gif
│   │   │   ├── UpgradeReport_Plus.gif
│   │   │   └── UpgradeReport.xslt
│   │   ├── 学生管理信息系统.sln
│   │   └── 学生管理信息系统.suo
│   ├── SMS.WinForm
│   │   ├── Backup
│   │   │   ├── StudentsMIS.Business
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── AwardEntity.cs
│   │   │   │   ├── AwardManager.cs
│   │   │   │   ├── ChangeEntity.cs
│   │   │   │   ├── ChangeManager.cs
│   │   │   │   ├── ChangeTypeManager.cs
│   │   │   │   ├── ClassEntity.cs
│   │   │   │   ├── ClassManager.cs
│   │   │   │   ├── CollegeManager.cs
│   │   │   │   ├── IEntity.cs
│   │   │   │   ├── IManager.cs
│   │   │   │   ├── PunishmentEntity.cs
│   │   │   │   ├── PunishmentManager.cs
│   │   │   │   ├── PunishmentTypeManager.cs
│   │   │   │   ├── SpecialityManager.cs
│   │   │   │   ├── StudentEntity.cs
│   │   │   │   ├── StudentManager.cs
│   │   │   │   ├── StudentsMIS.Business.csproj
│   │   │   │   └── StudentsMIS.Business.csproj.user
│   │   │   ├── StudentsMIS.CommonClassLibrary
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── BindDownList.cs
│   │   │   │   ├── FormatDateTime.cs
│   │   │   │   ├── StringValidation.cs
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.csproj
│   │   │   │   └── StudentsMIS.CommonClassLibrary.csproj.user
│   │   │   ├── StudentsMIS.DataAccess
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── CommandBuilder.cs
│   │   │   │   ├── CommandCloser.cs
│   │   │   │   ├── ConnectionBuilder.cs
│   │   │   │   ├── StudentsMIS.DataAccess.csproj
│   │   │   │   └── StudentsMIS.DataAccess.csproj.user
│   │   │   ├── StudentsMIS.Security
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── BaseAdminPage.cs
│   │   │   │   ├── BaseUserPage.cs
│   │   │   │   ├── StudentsMIS.Security.csproj
│   │   │   │   ├── StudentsMIS.Security.csproj.user
│   │   │   │   ├── User.cs
│   │   │   │   ├── UserEntity.cs
│   │   │   │   └── UserManager.cs
│   │   │   ├── StudentsMIS.WinForm
│   │   │   │   ├── App.ico
│   │   │   │   ├── AppStart.cs
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── ChangePassword.cs
│   │   │   │   ├── ChangePassword.resx
│   │   │   │   ├── CollegeDataSet.cs
│   │   │   │   ├── CollegeDataSet.xsd
│   │   │   │   ├── CollegeDataSet.xsx
│   │   │   │   ├── CommonValue.cs
│   │   │   │   ├── FormEdit.cs
│   │   │   │   ├── FormEdit.resx
│   │   │   │   ├── FormNew.cs
│   │   │   │   ├── FormNew.resx
│   │   │   │   ├── FormProperty.cs
│   │   │   │   ├── FormProperty.resx
│   │   │   │   ├── images
│   │   │   │   │   ├── boy_16.bmp
│   │   │   │   │   ├── boy_32.bmp
│   │   │   │   │   ├── delete.bmp
│   │   │   │   │   ├── edit.bmp
│   │   │   │   │   ├── girl_16.bmp
│   │   │   │   │   ├── girl_32.bmp
│   │   │   │   │   ├── new.bmp
│   │   │   │   │   ├── properties.bmp
│   │   │   │   │   └── refresh.bmp
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Organization.cs
│   │   │   │   ├── Organization.xsd
│   │   │   │   ├── Organization.xsx
│   │   │   │   ├── OrgSettings.cs
│   │   │   │   ├── OrgSettings.resx
│   │   │   │   ├── StuAddedInfo.cs
│   │   │   │   ├── StuAddedInfo.xsd
│   │   │   │   ├── StuAddedInfo.xsx
│   │   │   │   ├── StudentsMIS.WinForm.csproj
│   │   │   │   ├── StudentsMIS.WinForm.csproj.user
│   │   │   │   ├── TypeSettings.cs
│   │   │   │   ├── TypeSettings.resx
│   │   │   │   ├── UserLoginForm.cs
│   │   │   │   ├── UserLoginForm.resx
│   │   │   │   ├── UserManagement.cs
│   │   │   │   └── UserManagement.resx
│   │   │   ├── 学生管理信息系统.sln
│   │   │   └── 学生管理信息系统.suo
│   │   ├── StudentsMIS.Business
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── AwardEntity.cs
│   │   │   ├── AwardManager.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.Business.dll
│   │   │   │   ├── StudentsMIS.Business.pdb
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   └── StudentsMIS.DataAccess.pdb
│   │   │   ├── ChangeEntity.cs
│   │   │   ├── ChangeManager.cs
│   │   │   ├── ChangeTypeManager.cs
│   │   │   ├── ClassEntity.cs
│   │   │   ├── ClassManager.cs
│   │   │   ├── CollegeManager.cs
│   │   │   ├── IEntity.cs
│   │   │   ├── IManager.cs
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── StudentsMIS.Business.csproj.FileListAbsolute.txt
│   │   │   │   ├── StudentsMIS.Business.dll
│   │   │   │   ├── StudentsMIS.Business.pdb
│   │   │   │   ├── StudentsMIS.Business.projdata
│   │   │   │   ├── StudentsMIS.Business.projdata1
│   │   │   │   ├── temp
│   │   │   │   └── TempPE
│   │   │   ├── PunishmentEntity.cs
│   │   │   ├── PunishmentManager.cs
│   │   │   ├── PunishmentTypeManager.cs
│   │   │   ├── SpecialityManager.cs
│   │   │   ├── StudentEntity.cs
│   │   │   ├── StudentManager.cs
│   │   │   ├── StudentsMIS.Business.csproj
│   │   │   └── StudentsMIS.Business.csproj.user
│   │   ├── StudentsMIS.CommonClassLibrary
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.dll
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.pdb
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   └── StudentsMIS.DataAccess.pdb
│   │   │   ├── BindDownList.cs
│   │   │   ├── FormatDateTime.cs
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.csproj.FileListAbsolute.txt
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.dll
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.pdb
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.projdata
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.projdata1
│   │   │   │   ├── temp
│   │   │   │   └── TempPE
│   │   │   ├── StringValidation.cs
│   │   │   ├── StudentsMIS.CommonClassLibrary.csproj
│   │   │   └── StudentsMIS.CommonClassLibrary.csproj.user
│   │   ├── StudentsMIS.DataAccess
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   ├── StudentsMIS.DataAccess.pdb
│   │   │   │   └── StudentsMIS.mdb
│   │   │   ├── CommandBuilder.cs
│   │   │   ├── CommandCloser.cs
│   │   │   ├── ConnectionBuilder.cs
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.DataAccess.csproj.FileListAbsolute.txt
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   ├── StudentsMIS.DataAccess.pdb
│   │   │   │   ├── StudentsMIS.DataAccess.projdata
│   │   │   │   ├── StudentsMIS.DataAccess.projdata1
│   │   │   │   ├── temp
│   │   │   │   └── TempPE
│   │   │   ├── StudentsMIS.DataAccess.csproj
│   │   │   └── StudentsMIS.DataAccess.csproj.user
│   │   ├── StudentsMIS.Security
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── BaseAdminPage.cs
│   │   │   ├── BaseUserPage.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   ├── StudentsMIS.DataAccess.pdb
│   │   │   │   ├── StudentsMIS.Security.dll
│   │   │   │   └── StudentsMIS.Security.pdb
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.Security.csproj.FileListAbsolute.txt
│   │   │   │   ├── StudentsMIS.Security.dll
│   │   │   │   ├── StudentsMIS.Security.pdb
│   │   │   │   ├── StudentsMIS.Security.projdata
│   │   │   │   ├── StudentsMIS.Security.projdata1
│   │   │   │   ├── temp
│   │   │   │   └── TempPE
│   │   │   ├── StudentsMIS.Security.csproj
│   │   │   ├── StudentsMIS.Security.csproj.user
│   │   │   ├── User.cs
│   │   │   ├── UserEntity.cs
│   │   │   └── UserManager.cs
│   │   ├── StudentsMIS.WinForm
│   │   │   ├── App.ico
│   │   │   ├── AppStart.cs
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── StudentsMIS.Business.dll
│   │   │   │   ├── StudentsMIS.Business.pdb
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.dll
│   │   │   │   ├── StudentsMIS.CommonClassLibrary.pdb
│   │   │   │   ├── StudentsMIS.DataAccess.dll
│   │   │   │   ├── StudentsMIS.DataAccess.pdb
│   │   │   │   ├── StudentsMIS.DataBase.dll
│   │   │   │   ├── StudentsMIS.Security.dll
│   │   │   │   ├── StudentsMIS.Security.pdb
│   │   │   │   ├── StudentsMIS.WinForm.exe
│   │   │   │   ├── StudentsMIS.WinForm.pdb
│   │   │   │   └── StudentsMIS.WinForm.vshost.exe
│   │   │   ├── ChangePassword.cs
│   │   │   ├── ChangePassword.resx
│   │   │   ├── CollegeDataSet.Designer.cs
│   │   │   ├── CollegeDataSet.xsd
│   │   │   ├── CollegeDataSet.xsx
│   │   │   ├── CommonValue.cs
│   │   │   ├── FormEdit.cs
│   │   │   ├── FormEdit.resx
│   │   │   ├── FormNew.cs
│   │   │   ├── FormNew.resx
│   │   │   ├── FormProperty.cs
│   │   │   ├── FormProperty.resx
│   │   │   ├── images
│   │   │   │   ├── boy_16.bmp
│   │   │   │   ├── boy_32.bmp
│   │   │   │   ├── delete.bmp
│   │   │   │   ├── edit.bmp
│   │   │   │   ├── girl_16.bmp
│   │   │   │   ├── girl_32.bmp
│   │   │   │   ├── new.bmp
│   │   │   │   ├── properties.bmp
│   │   │   │   └── refresh.bmp
│   │   │   ├── MainForm.cs
│   │   │   ├── MainForm.resx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │   ├── ResolveAssemblyReference.cache
│   │   │   │   ├── StudentsMIS.WinForm.ChangePassword.resources
│   │   │   │   ├── StudentsMIS.WinForm.csproj.FileListAbsolute.txt
│   │   │   │   ├── StudentsMIS.WinForm.csproj.GenerateResource.Cache
│   │   │   │   ├── StudentsMIS.WinForm.exe
│   │   │   │   ├── StudentsMIS.WinForm.FormEdit.resources
│   │   │   │   ├── StudentsMIS.WinForm.FormNew.resources
│   │   │   │   ├── StudentsMIS.WinForm.FormProperty.resources
│   │   │   │   ├── StudentsMIS.WinForm.MainForm.resources
│   │   │   │   ├── StudentsMIS.WinForm.OrgSettings.resources
│   │   │   │   ├── StudentsMIS.WinForm.pdb
│   │   │   │   ├── StudentsMIS.WinForm.projdata
│   │   │   │   ├── StudentsMIS.WinForm.projdata1
│   │   │   │   ├── StudentsMIS.WinForm.Test.resources
│   │   │   │   ├── StudentsMIS.WinForm.TypeSettings.resources
│   │   │   │   ├── StudentsMIS.WinForm.UserLoginForm.resources
│   │   │   │   ├── StudentsMIS.WinForm.UserManagement.resources
│   │   │   │   ├── temp
│   │   │   │   └── TempPE
│   │   │   │   ├── ChangeRecord.cs.dll
│   │   │   │   ├── CollegeDataSet.cs.dll
│   │   │   │   ├── CollegeDataSet.Designer.cs.dll
│   │   │   │   ├── Dataset1.cs.dll
│   │   │   │   ├── Organization.cs.dll
│   │   │   │   ├── Organization.Designer.cs.dll
│   │   │   │   ├── StuAddedInfo.cs.dll
│   │   │   │   └── StuAddedInfo.Designer.cs.dll
│   │   │   ├── Organization.Designer.cs
│   │   │   ├── Organization.xsd
│   │   │   ├── Organization.xsx
│   │   │   ├── OrgSettings.cs
│   │   │   ├── OrgSettings.resx
│   │   │   ├── StuAddedInfo.Designer.cs
│   │   │   ├── StuAddedInfo.xsd
│   │   │   ├── StuAddedInfo.xsx
│   │   │   ├── StudentsMIS.WinForm.csproj
│   │   │   ├── StudentsMIS.WinForm.csproj.user
│   │   │   ├── TypeSettings.cs
│   │   │   ├── TypeSettings.resx
│   │   │   ├── UserLoginForm.cs
│   │   │   ├── UserLoginForm.resx
│   │   │   ├── UserManagement.cs
│   │   │   └── UserManagement.resx
│   │   ├── UpgradeLog.XML
│   │   ├── _UpgradeReport_Files
│   │   │   ├── UpgradeReport.css
│   │   │   ├── UpgradeReport_Minus.gif
│   │   │   ├── UpgradeReport_Plus.gif
│   │   │   └── UpgradeReport.xslt
│   │   ├── 学生管理信息系统.sln
│   │   └── 学生管理信息系统.suo
│   └── student_mis_setup.exe
└── 学生管理信息系统
├── StudentsMIS.Business.dll
├── StudentsMIS.CommonClassLibrary.dll
├── StudentsMIS.DataAccess.dll
├── StudentsMIS.DataBase.dll
├── StudentsMIS.exe
├── StudentsMIS.Security.dll
├── StudentsMIS.url
├── unins000.dat
└── unins000.exe

100 directories, 460 files

标签:

实例下载地址

学生管理信息系统(c#).rar

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警