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

资源简介

C# ASP.NET学生管理信息系统代码,SQL数据库,身份权限分:管理员、院教务员、班主任、学生等,适合学习的一套系统。 www.gouyue.net 勾月科技 QQ17878387 勾月

资源截图

代码片段和文件信息

/*====================================================================================
 * 系统名称:学生管理信息系统
 * 模块名称:业务逻辑层
 * 作    者:鄢涛
 * 功能说明:完成管理员用户的业务逻辑操作
 * 创建日期:2009-9-6
 ===================================================================================*/


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

using System.Data;
using CDU.DAL;
using CDU.Entity;

//引用System.Web程序集
using System.Web.Security;

namespace CDU.BLL
{
    public static class BLL_AdminUser
    {

        /// 
        /// 管理员用户登录
        /// 

        /// 用户ID
        /// 用户密码,已经经过md5加密
        /// 如果登录成功,则返回管理员的一个实体,否则返回NULL
        public static Entity_AdminUser Login(string id string pwd)
        {
            if (string.IsNullOrEmpty(id) || string.IsNullOrEmpty(pwd))
                return null;
            
            //对密码进行MD5加密
            pwd = CommonFuncs.MD5_Encode(pwd);
            
            try
            {
                return DAL_AminUser.Login(id pwd);

            }
            catch (Exception ex)
            {
                BLL_Logs.WriteLog(ex.Message);
                return null;
            }
        }

        /// 
        /// 更新管理员用户的信息
        /// 

        /// 管理员用户实体
        /// 成功返回true,失败返回false
        public static bool Update(Entity_AdminUser insAdmin)
        {
            try
            {
                DAL_AminUser.Update(insAdmin);
                return true;
            }
            catch (Exception ex)
            {
                BLL_Logs.WriteLog(ex.Message);
                return false;
            }
        }
    }
}

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

     文件    3145728  2011-06-30 10:42  学生管理信息系统代码\Database\studentMIS.mdf

     文件    1048576  2011-06-30 10:42  学生管理信息系统代码\Database\studentMIS_log.ldf

     文件      10752  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\bin\Debug\CDU.BLL.dll

     文件      48640  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\bin\Debug\CDU.BLL.pdb

     文件      17920  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\bin\Debug\CDU.DAL.dll

     文件      46592  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\bin\Debug\CDU.DAL.pdb

     文件      12800  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\bin\Debug\CDU.Entity.dll

     文件      11776  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\bin\Debug\CDU.Entity.pdb

     文件      90112  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll

     文件      65536  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Data.dll

     文件      57344  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\bin\Debug\Microsoft.Practices.objectBuilder.dll

     文件       2963  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL.csproj

     文件       2088  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_AdminUser.cs

     文件       4755  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_Classes.cs

     文件       1635  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_Logs.cs

     文件       4402  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_Major.cs

     文件       2943  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_Rewards.cs

     文件       3300  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_RewardsTypes.cs

     文件       4118  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_School.cs

     文件       2809  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_StatusChange.cs

     文件       3466  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_StatusChangeType.cs

     文件       4300  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\BLL_Student.cs

     文件        922  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\CommonFuncs.cs

     文件       2478  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\BLL\obj\Debug\BLL.csproj.FileListAbsolute.txt

     文件      10752  2011-06-30 10:41  学生管理信息系统代码\StudentMIS\BLL\obj\Debug\CDU.BLL.dll

     文件      48640  2011-06-30 10:41  学生管理信息系统代码\StudentMIS\BLL\obj\Debug\CDU.BLL.pdb

     文件       5120  2011-06-30 10:41  学生管理信息系统代码\StudentMIS\BLL\obj\Debug\Refactor\CDU.BLL.dll

     文件      19451  2011-06-30 10:41  学生管理信息系统代码\StudentMIS\BLL\obj\Debug\ResolveAssemblyReference.cache

     文件       1344  2011-06-30 10:42  学生管理信息系统代码\StudentMIS\BLL\Properties\AssemblyInfo.cs

     文件      17920  2011-06-30 10:43  学生管理信息系统代码\StudentMIS\DAL\bin\Debug\CDU.DAL.dll

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

评论

共有 条评论

相关资源