• 大小: 1.26MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-29
  • 语言: 其他
  • 标签: 带有源码  B/S  

资源简介

继续教育学院教务管理系统 系统包括若干子系统:基本教务管理;系统维护管理;邮件系统;视频系统;论坛系统等 技术:基于角色的权限管理机制、利用组件化编程、支持模块的升级。 此版仅为演示学习版,禁止要用于谋取经济利益!

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Collections.Generic;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

/// 
/// admin 的摘要说明
/// 

public class Admin
{
    private string a_id;
    private string a_name;
    private string a_pwd;
    private string s_id;
    private string a_phone;
    private string a_email;
    public string A_Id
    {
        set
        {
            a_id = Common.QuerySQL(value);
        }
    }
    public string A_Name
    {
        set
        {
            a_name = Common.QuerySQL(value);
        }
    }
    public string A_Pwd
    {
        set
        {
            a_pwd = Common.QuerySQL(value);
        }
    }
    public string S_Id
    {
        set
        {
            s_id = value;
        }
    }
    public string A_Phone
    {
        set
        {
            a_phone = Common.QuerySQL(value);
        }
    }
    public string A_Email
    {
        set
        {
            a_email = Common.QuerySQL(value);
        }
    }   
    /***************************************【addadmin.aspx】*******************************************************************/
    /// 
    /// 获取预定义编号
    /// 

    /// 字符串
    public string PreId()
    {
        string _commstr = “select top 1 Admin_Id from Admin order by Admin_Id desc“;
        DataTable dt = Data.GetDT(_commstr);
        if (dt != null&&dt.Rows.Count>0)
        {
            return Convert.ToString((int.Parse(dt.Rows[0][0].ToString()) + 1));
        }
        return string.Empty;
    }
    /// 
    /// 函授站绑定
    /// 

    /// 绑定容器
    public void BindStation(DropDownList _ddl)
    {
        string _commstr = “select TS_Id as _valueTS_Name as _text from TStation“;
        Data.DDL_Bind(_ddl _commstr);
    }
    /// 
    /// 添加管理员用户
    /// 

    /// 
    public bool AddAdmin()
    {
        string _commstr = string.Format(“insert into Admin values(‘{0}‘‘{1}‘‘{2}‘‘{3}‘‘{4}‘‘{5}‘‘‘‘‘)“a_ida_namea_pwds_ida_phonea_email);
        int i=Data.GetInt(_commstr);
        if (i > 0)
        {
            return true;
        }
        return false;
    }
    /***************************************【adminlist.aspx】*******************************************************************/
    /// 
    /// 查看全部管理员
    /// 

    /// 容器
    /// 布尔类型
    public bool ShowAdmin(Repeater r)
    {
        string _commstr = “select a.Admin_Ida.Admin_Namea.Admin_Pwdb.TS_Namea.Admin_Phonea.Admin_Email from Admin aTStation b where a.TS_Id=b.TS_Id“;
        Data.R_Bind(r _commstr);
        if (r.Items.Count > 0)
        {
            ret

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

     文件       6402  2010-12-12 12:56  继教教务管理系统\jwgl\App_Code\Admin.cs

     文件        411  2010-11-23 18:50  继教教务管理系统\jwgl\App_Code\BBS.cs

     文件      19031  2010-12-18 22:59  继教教务管理系统\jwgl\App_Code\Common.cs

     文件      12349  2010-12-12 14:50  继教教务管理系统\jwgl\App_Code\Course.cs

     文件       8292  2010-11-29 23:16  继教教务管理系统\jwgl\App_Code\Data.cs

     文件        417  2010-11-23 18:49  继教教务管理系统\jwgl\App_Code\Email.cs

     文件       9886  2010-12-18 20:52  继教教务管理系统\jwgl\App_Code\Function.cs

     文件        341  2010-11-11 18:24  继教教务管理系统\jwgl\App_Code\library.cs

     文件       2126  2010-11-28 14:00  继教教务管理系统\jwgl\App_Code\Logon.cs

     文件       9285  2010-12-18 17:46  继教教务管理系统\jwgl\App_Code\Major.cs

     文件       7247  2010-12-11 11:03  继教教务管理系统\jwgl\App_Code\Menu.cs

     文件       4607  2010-12-13 19:35  继教教务管理系统\jwgl\App_Code\Module.cs

     文件       2951  2010-12-01 20:21  继教教务管理系统\jwgl\App_Code\NextPage.cs

     文件       6506  2010-12-12 12:43  继教教务管理系统\jwgl\App_Code\Role.cs

     文件       8600  2010-12-12 15:35  继教教务管理系统\jwgl\App_Code\Schedule.cs

     文件       4456  2010-12-04 13:14  继教教务管理系统\jwgl\App_Code\SchoolYear.cs

     文件       3870  2010-12-13 11:56  继教教务管理系统\jwgl\App_Code\Score.cs

     文件       1435  2010-11-28 15:52  继教教务管理系统\jwgl\App_Code\Secret.cs

     文件      15218  2010-12-18 18:35  继教教务管理系统\jwgl\App_Code\Station.cs

     文件       8183  2010-12-18 23:33  继教教务管理系统\jwgl\App_Code\Student.cs

     文件      11666  2010-12-18 20:03  继教教务管理系统\jwgl\App_Code\Teacher.cs

     文件       9293  2010-12-18 20:50  继教教务管理系统\jwgl\App_Code\TheMenu.cs

     文件        456  2010-11-11 18:23  继教教务管理系统\jwgl\App_Code\TUser.cs

     文件        444  2010-11-11 18:23  继教教务管理系统\jwgl\App_Code\Video.cs

     文件       7530  2010-12-18 23:32  继教教务管理系统\jwgl\App_Code\_Class.cs

     文件       5183  2010-12-18 21:18  继教教务管理系统\jwgl\App_Code\_System.cs

     文件    1478656  2010-12-18 23:01  继教教务管理系统\jwgl\App_Data\jwgl.mdb

     文件    1835008  2010-10-31 20:25  继教教务管理系统\jwgl\App_Data\jwgl_Data.MDF

     文件    1048576  2010-10-31 20:25  继教教务管理系统\jwgl\App_Data\jwgl_Log.LDF

     文件      49152  2004-12-21 14:27  继教教务管理系统\jwgl\Bin\aspnetpager.dll

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

评论

共有 条评论