• 大小: 40.79MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-22
  • 语言: 其他
  • 标签: MVC,EF,  

资源简介

使用VS2015开发基于.net的MVC+EF+bootstrap的学生管理系统, 登陆角色为: 管理员admin,密码admin,角色0; 老师1,密码1,角色1; 学生2,密码2,角色2; 基础,源代码,分了角色方便管理,有数据库

资源截图

代码片段和文件信息

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

namespace Student
{
    /// 
    /// 表示Ajax操作结果 
    /// 

    public class AjaxResult
    {
        /// 
        /// 获取 Ajax操作结果类型
        /// 

        public ResultType type { get; set; }

        /// 
        /// 获取 Ajax操作结果编码
        /// 

        public int errorcode { get; set; }

        private string _message;
        /// 
        /// 获取 消息内容
        /// 

        public string message
        {
            get { return _message == null ? string.Empty : _message; }
            set { _message = value; }
        }

        /// 
        /// 获取 返回数据
        /// 

        public object resultdata { get; set; }

        /// 
        /// 构造方法
        /// 

        /// 
        /// 
        /// 
        /// 
        public AjaxResult()
        {
        }

        /// 
        /// 构造方法
        /// 

        /// 
        /// 
        /// 
        /// 
        public AjaxResult(ResultType resultType string message object resultData)
        {
            this.type = resultType;
            this.message = message;
            this.resultdata = resultData;
        }

        /// 
        /// 构造方法
        /// 

        /// 
        /// 
        /// 
        /// 
        public AjaxResult(ResultType resultType int errorCode string resultMessage object resultData)
        {
            this.type = resultType;
            this.errorcode = errorCode;
            this.message = resultMessage;
            this.resultdata = resultdata;
        }

        /// 
        /// 构造方法
        /// 

        /// 
        public AjaxResult(Exception ex)
        {
            this.type = ResultType.error;
            this.message = ex.Message;
        }
    }
    /// 
    /// 表示 ajax 操作结果类型的枚举
    /// 

    public enum ResultType
    {
        /// 
        /// 消息结果类型
        /// 

        info = 0

        /// 
        /// 成功结果类型
        /// 

        success = 1

        /// 
        /// 警告结果类型
        /// 

        warning = 2

        /// 
        /// 异常结果类型
        /// 

        error = 3
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-09-08 15:38  Student\
     目录           0  2017-09-04 22:50  Student\.vs\
     目录           0  2017-09-04 22:50  Student\.vs\config\
     文件       83413  2017-09-04 22:50  Student\.vs\config\applicationhost.config
     目录           0  2017-09-04 22:50  Student\.vs\Student\
     目录           0  2017-09-06 18:02  Student\.vs\Student\v14\
     文件      135680  2017-09-08 15:27  Student\.vs\Student\v14\.suo
     目录           0  2017-09-08 15:39  Student\Data\
     文件     8388608  2017-09-08 15:39  Student\Data\Students.mdf
     文件     8388608  2017-09-08 15:39  Student\Data\Students_log.ldf
     目录           0  2017-09-04 17:51  Student\NPOI\
     文件        9851  2015-03-31 05:19  Student\NPOI\LICENSE
     目录           0  2017-09-04 17:51  Student\NPOI\logo\
     文件        8143  2010-10-08 20:45  Student\NPOI\logo\120_120.jpg
     文件       15405  2010-10-22 11:12  Student\NPOI\logo\240_240.png
     文件        1835  2010-10-08 20:48  Student\NPOI\logo\32_32.jpg
     文件        4191  2010-10-08 20:47  Student\NPOI\logo\60_60.jpg
     目录           0  2017-09-04 17:51  Student\NPOI\Net20\
     文件      200704  2014-07-03 10:56  Student\NPOI\Net20\ICSharpCode.SharpZipLib.dll
     文件     1677312  2016-05-22 04:35  Student\NPOI\Net20\NPOI.dll
     文件      493568  2016-05-22 04:35  Student\NPOI\Net20\NPOI.OOxml.dll
     文件       91136  2016-05-22 04:35  Student\NPOI\Net20\NPOI.Openxml4Net.dll
     文件     2120192  2016-05-22 04:35  Student\NPOI\Net20\NPOI.OpenxmlFormats.dll
     文件     2254144  2016-05-22 04:35  Student\NPOI\Net20\NPOI.xml
     目录           0  2017-09-04 17:51  Student\NPOI\Net40\
     文件      200704  2014-07-03 10:56  Student\NPOI\Net40\ICSharpCode.SharpZipLib.dll
     文件     1678848  2016-05-22 04:35  Student\NPOI\Net40\NPOI.dll
     文件      494080  2016-05-22 04:35  Student\NPOI\Net40\NPOI.OOxml.dll
     文件       91136  2016-05-22 04:35  Student\NPOI\Net40\NPOI.Openxml4Net.dll
     文件     2121728  2016-05-22 04:35  Student\NPOI\Net40\NPOI.OpenxmlFormats.dll
     文件     2254144  2016-05-22 04:35  Student\NPOI\Net40\NPOI.xml
............此处省略691个文件信息

评论

共有 条评论

相关资源