实例介绍
功能非常完善,包括自定义角色,权限管理,灵活的组织结构管理。 系统模块 主要功能模块 系统管理 模块管理 角色管理 系统设置 用户管理 部门管理 岗位管理 在线用户管理 版本升级说明 我的短信 写新消息 收件箱 发件箱 草稿箱 通讯录 通讯录分类管理 我的账户 个人资料 密码修改
【实例截图】
【核心代码】
45b395a3-6d93-400c-8bfe-a8d6295c4a35
└── 基于考试系统的框架
└── Timber_Exam
├── AssemblyLibrary
│ ├── AjaxControlToolkit.dll
│ ├── AspNetPager.dll
│ ├── AssemblyLibrary.csproj
│ ├── AutoDA2G.dll
│ ├── bin
│ │ └── Debug
│ │ ├── AssemblyLibrary.dll
│ │ └── AssemblyLibrary.pdb
│ ├── Interop.Excel.dll
│ ├── Interop.Word.dll
│ ├── MaskKey.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll
│ ├── obj
│ │ ├── AssemblyLibrary.csproj.FileListAbsolute.txt
│ │ ├── AssemblyLibrary.csproj.FileList.txt
│ │ └── Debug
│ │ ├── AssemblyLibrary.dll
│ │ └── AssemblyLibrary.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SysFW.dll
│ ├── System.Web.Extensions.Design.dll
│ ├── System.Web.Extensions.dll
│ └── Win32dll.dll
├── Business
│ ├── bin
│ │ ├── Debug
│ │ │ ├── AutoDA2G.dll
│ │ │ ├── Business.dll
│ │ │ ├── Business.pdb
│ │ │ ├── Common.dll
│ │ │ └── Common.pdb
│ │ └── Release
│ │ ├── AutoDA2G.dll
│ │ ├── Business.dll
│ │ ├── Business.pdb
│ │ ├── Common.dll
│ │ └── Common.pdb
│ ├── Business.csproj
│ ├── Check
│ │ ├── CheckManage.cs
│ │ └── CheckQuery.cs
│ ├── Exam
│ │ ├── ExamManage.cs
│ │ └── ExamQuery.cs
│ ├── Info
│ │ ├── InfoManage.cs
│ │ └── InfoQuery.cs
│ ├── obj
│ │ ├── Business.csproj.FileListAbsolute.txt
│ │ ├── Business.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── Business.dll
│ │ │ ├── Business.pdb
│ │ │ ├── Refactor
│ │ │ │ └── Business.dll
│ │ │ └── ResolveAssemblyReference.cache
│ │ └── Release
│ │ ├── Business.dll
│ │ ├── Business.pdb
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Public
│ │ ├── PublicManage.cs
│ │ └── PublicQuery.cs
│ ├── SystemM
│ │ ├── SystemManage.cs
│ │ └── SystemQuery.cs
│ └── Template
│ ├── TemplateManage.cs
│ └── TemplateQuery.cs
├── Common
│ ├── bin
│ │ ├── Debug
│ │ │ ├── AutoDA2G.dll
│ │ │ ├── Common.dll
│ │ │ └── Common.pdb
│ │ └── Release
│ │ ├── AutoDA2G.dll
│ │ ├── Common.dll
│ │ └── Common.pdb
│ ├── Common.csproj
│ ├── Const
│ │ ├── LimitNames.cs
│ │ ├── Procedure.cs
│ │ ├── SequenceNames.cs
│ │ ├── TableNames.cs
│ │ └── ViewNames.cs
│ ├── Data
│ │ ├── Exam_Type_Info.cs
│ │ ├── Message_Accept_Info.cs
│ │ ├── Message_Draft_Info.cs
│ │ ├── Message_Inbox_Info.cs
│ │ ├── Message_Notebook_Info.cs
│ │ ├── Message_Notebook_Type_Info.cs
│ │ ├── Message_Outbox_Info.cs
│ │ ├── New_Info.cs
│ │ ├── New_Type_Info.cs
│ │ ├── OnlineUser.cs
│ │ ├── System_Link_User_Role.cs
│ │ ├── System_Module_Info.cs
│ │ ├── System_Role_Info.cs
│ │ ├── System_Role_Limit.cs
│ │ ├── User_Base_Info.cs
│ │ ├── User_Condition.cs
│ │ ├── User_Dep_Info.cs
│ │ ├── User_Full_Info.cs
│ │ ├── User_Info.cs
│ │ ├── User_Position_Info.cs
│ │ ├── User_Stu_Info.cs
│ │ ├── Vote_Base_Info.cs
│ │ ├── Vote_Sub_Info.cs
│ │ ├── Vote_Type_Info.cs
│ │ └── Vote_User_Record.cs
│ ├── obj
│ │ ├── Common.csproj.FileListAbsolute.txt
│ │ ├── Common.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── Common.dll
│ │ │ ├── Common.pdb
│ │ │ └── Refactor
│ │ │ └── Common.dll
│ │ └── Release
│ │ ├── Common.dll
│ │ └── Common.pdb
│ └── Properties
│ └── AssemblyInfo.cs
├── Data
│ ├── Timber_Data_Data.MDF
│ └── Timber_Data_Log.LDF
├── DBCommon
│ ├── bin
│ │ └── Debug
│ │ ├── AutoDA2G.dll
│ │ ├── Business.dll
│ │ ├── Business.pdb
│ │ ├── Common.dll
│ │ ├── Common.pdb
│ │ ├── DBCommon.dll
│ │ ├── DBCommon.pdb
│ │ ├── DBCommon.zip
│ │ ├── Facade.dll
│ │ ├── Facade.pdb
│ │ └── SysFW.dll
│ ├── DBCommon.csproj
│ ├── DBOperate.cs
│ ├── Functions.cs
│ ├── obj
│ │ ├── DBCommon.csproj.FileListAbsolute.txt
│ │ ├── Debug
│ │ │ ├── DBCommon.dll
│ │ │ ├── DBCommon.pdb
│ │ │ ├── Refactor
│ │ │ │ └── DBCommon.dll
│ │ │ └── ResolveAssemblyReference.cache
│ │ └── Release
│ │ └── build.force
│ ├── Procedures.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Tables.cs
│ ├── Triggers.cs
│ └── Views.cs
├── DBInstall
│ ├── bin
│ │ └── Debug
│ │ ├── DBInstall.dll
│ │ ├── DBInstall.pdb
│ │ └── Interop.IWshRuntimeLibrary.dll
│ ├── DBInstall.csproj
│ ├── DBInstall.suo
│ ├── Installer1.cs
│ ├── Installer1.Designer.cs
│ ├── obj
│ │ ├── DBInstall.csproj.FileListAbsolute.txt
│ │ ├── DBInstall.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── build.force
│ │ │ ├── DBInstall.csproj.ResolveComReference.cache
│ │ │ ├── DBInstall.dll
│ │ │ ├── DBInstall.pdb
│ │ │ └── Interop.IWshRuntimeLibrary.dll
│ │ └── Release
│ │ ├── build.force
│ │ ├── DBInstall.csproj.ResolveComReference.cache
│ │ └── Interop.IWshRuntimeLibrary.dll
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── vssver2.scc
│ └── vssver2.scc
├── DOC
│ ├── Timber_Exam.pdb
│ └── Timber_Exam.pdm
├── Exam_Business
│ ├── Ajax
│ │ ├── Info_Ajax.cs
│ │ └── Login_Ajax.cs
│ ├── bin
│ │ └── Debug
│ │ ├── AutoDA2G.dll
│ │ ├── Business.dll
│ │ ├── Business.pdb
│ │ ├── Common.dll
│ │ ├── Common.pdb
│ │ ├── Exam_Business.dll
│ │ ├── Exam_Business.pdb
│ │ ├── Facade.dll
│ │ ├── Facade.pdb
│ │ ├── Interop.Excel.dll
│ │ ├── Interop.Word.dll
│ │ ├── SysFW.dll
│ │ └── System.Web.Extensions.dll
│ ├── Exam_Business.csproj
│ ├── Exam_Business.csproj.user
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Exam_Business.dll
│ │ │ ├── Exam_Business.pdb
│ │ │ ├── Refactor
│ │ │ │ └── Exam_Business.dll
│ │ │ └── ResolveAssemblyReference.cache
│ │ ├── Exam_Business.csproj.FileListAbsolute.txt
│ │ └── Release
│ │ └── build.force
│ ├── PageBase
│ │ ├── PageBase.cs
│ │ ├── SystemCommon.cs
│ │ └── UserPageBase.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Public
│ ├── CheckPage.cs
│ ├── CheckType.cs
│ ├── ExcelHelper.cs
│ └── TxtHelper.cs
├── Facade
│ ├── bin
│ │ └── Debug
│ │ ├── AutoDA2G.dll
│ │ ├── Business.dll
│ │ ├── Business.pdb
│ │ ├── Common.dll
│ │ ├── Common.pdb
│ │ ├── Facade.dll
│ │ ├── Facade.pdb
│ │ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll
│ │ └── SysFW.dll
│ ├── DAHelper.cs
│ ├── Exam
│ │ ├── ExamManage.cs
│ │ └── ExamQuery.cs
│ ├── Facade.csproj
│ ├── Info
│ │ ├── InfoManage.cs
│ │ └── InfoQuery.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Facade.dll
│ │ │ ├── Facade.pdb
│ │ │ ├── Refactor
│ │ │ │ └── Facade.dll
│ │ │ └── ResolveAssemblyReference.cache
│ │ ├── Facade.csproj.FileListAbsolute.txt
│ │ ├── Facade.csproj.FileList.txt
│ │ └── Release
│ │ ├── build.force
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Public
│ │ ├── PublicManage.cs
│ │ └── PublicQuery.cs
│ ├── SystemM
│ │ ├── SystemManage.cs
│ │ └── SystemQuery.cs
│ ├── Template
│ │ ├── TemplateManage.cs
│ │ └── TemplateQuery.cs
│ └── Utility.cs
├── JSLibrary
│ ├── App_Css
│ │ ├── editor_nostyle
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── progressbg.gif
│ │ │ │ ├── progress.gif
│ │ │ │ ├── tag-address.gif
│ │ │ │ ├── tag-div.gif
│ │ │ │ ├── tag-h1.gif
│ │ │ │ ├── tag-h2.gif
│ │ │ │ ├── tag-h3.gif
│ │ │ │ ├── tag-h4.gif
│ │ │ │ ├── tag-h5.gif
│ │ │ │ ├── tag-h6.gif
│ │ │ │ ├── tag-p.gif
│ │ │ │ ├── tag-pre.gif
│ │ │ │ ├── waiting.gif
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ ├── jquery_jqplot.css
│ │ └── tab.css
│ ├── bin
│ │ ├── Debug
│ │ │ ├── JSLibrary.dll
│ │ │ └── JSLibrary.pdb
│ │ └── Release
│ │ ├── JSLibrary.dll
│ │ └── JSLibrary.pdb
│ ├── Exam.cs
│ ├── Info.cs
│ ├── JSLibrary.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.iframe.css
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.close.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.flash.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.icons.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.loading.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.progressbg.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.progress.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-address.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-div.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h1.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h2.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h3.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h4.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h5.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h6.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-p.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-pre.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.waiting.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.img.wmp.gif
│ │ │ ├── JSLibrary.App_Css.editor_nostyle.ui.css
│ │ │ ├── JSLibrary.App_Css.jquery_jqplot.css
│ │ │ ├── JSLibrary.App_Css.tab.css
│ │ │ ├── JSLibrary.dll
│ │ │ ├── JSLibrary.pdb
│ │ │ ├── JSLibrary.Report.excanvas.js
│ │ │ ├── JSLibrary.Report.jqplot_barRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_BezierCurveRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_canvasAxisLabelRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_canvasAxisTickRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_canvasTextRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_categoryAxisRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_cursor.js
│ │ │ ├── JSLibrary.Report.jqplot_dateAxisRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_donutRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_highlighter.js
│ │ │ ├── JSLibrary.Report.jqplot_logAxisRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_ohlcRenderer.js
│ │ │ ├── JSLibrary.Report.jqplot_pieRenderer.js
│ │ │ ├── JSLibrary.Report.jquery_jqplot.js
│ │ │ ├── JSLibrary.WebJS.Exam.Exam_Type_Main.js
│ │ │ ├── JSLibrary.WebJS.Exam.Exam_Type_Right.js
│ │ │ ├── JSLibrary.WebJS.Info.Message_Draft.js
│ │ │ ├── JSLibrary.WebJS.Info.Message_Inbox.js
│ │ │ ├── JSLibrary.WebJS.Info.Message_Outbox.js
│ │ │ ├── JSLibrary.WebJS.Info.Message_View.js
│ │ │ ├── JSLibrary.WebJS.Info.Message_Write.js
│ │ │ ├── JSLibrary.WebJS.Info.New_Manage.js
│ │ │ ├── JSLibrary.WebJS.Info.New_Query.js
│ │ │ ├── JSLibrary.WebJS.Info.New_Type_Main.js
│ │ │ ├── JSLibrary.WebJS.Info.New_Type_Right.js
│ │ │ ├── JSLibrary.WebJS.Info.New_User_Query.js
│ │ │ ├── JSLibrary.WebJS.Info.Notebook_Main.js
│ │ │ ├── JSLibrary.WebJS.Info.Notebook_Right.js
│ │ │ ├── JSLibrary.WebJS.Info.Notebook_Type_Main.js
│ │ │ ├── JSLibrary.WebJS.Info.Notebook_Type_Right.js
│ │ │ ├── JSLibrary.WebJS.LoginAD.js
│ │ │ ├── JSLibrary.WebJS.Login.js
│ │ │ ├── JSLibrary.WebJS.System.Dep_Main.js
│ │ │ ├── JSLibrary.WebJS.System.Dep_Right.js
│ │ │ ├── JSLibrary.WebJS.System.Module_Manage.js
│ │ │ ├── JSLibrary.WebJS.System.Module_Query.js
│ │ │ ├── JSLibrary.WebJS.System.Online_User.js
│ │ │ ├── JSLibrary.WebJS.System.Position_Main.js
│ │ │ ├── JSLibrary.WebJS.System.Position_Right.js
│ │ │ ├── JSLibrary.WebJS.System.Role_Manage.js
│ │ │ ├── JSLibrary.WebJS.System.Role_Query.js
│ │ │ ├── JSLibrary.WebJS.System.Stu_User_Manage.js
│ │ │ ├── JSLibrary.WebJS.System.Stu_User_Query.js
│ │ │ ├── JSLibrary.WebJS.System.Stu_User_Regist.js
│ │ │ ├── JSLibrary.WebJS.System.System_Config.js
│ │ │ ├── JSLibrary.WebJS.System.User_Info_Manage.js
│ │ │ ├── JSLibrary.WebJS.System.User_Pwd_Manage.js
│ │ │ ├── JSLibrary.WebJS.Top.js
│ │ │ ├── JSLibrary.WebJS.UserControl.Check.js
│ │ │ ├── JSLibrary.WebJS.UserControl.FileUpLoad.js
│ │ │ ├── JSLibrary.WebJS.UserControl.User_Select.js
│ │ │ ├── JSLibrary.WebJS.Web.js
│ │ │ ├── JSLibrary.WebPublic.jquery_142_min.js
│ │ │ ├── JSLibrary.WebPublic.jquery_divbox_exam.js
│ │ │ ├── JSLibrary.WebPublic.jquery_divbox.js
│ │ │ ├── JSLibrary.WebPublic.jquery.js
│ │ │ ├── JSLibrary.WebPublic.Public.js
│ │ │ ├── JSLibrary.WebPublic.SetDate.js
│ │ │ ├── JSLibrary.WebPublic.Validate.js
│ │ │ ├── JSLibrary.WebPublic.winForm.js
│ │ │ └── Refactor
│ │ │ └── JSLibrary.dll
│ │ ├── JSLibrary.csproj.FileListAbsolute.txt
│ │ └── Release
│ │ ├── JSLibrary.App_Css.editor_nostyle.iframe.css
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.close.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.flash.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.icons.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.loading.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.progressbg.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.progress.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-address.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-div.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h1.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h2.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h3.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h4.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h5.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-h6.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-p.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.tag-pre.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.waiting.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.img.wmp.gif
│ │ ├── JSLibrary.App_Css.editor_nostyle.ui.css
│ │ ├── JSLibrary.App_Css.jquery_jqplot.css
│ │ ├── JSLibrary.App_Css.tab.css
│ │ ├── JSLibrary.dll
│ │ ├── JSLibrary.pdb
│ │ ├── JSLibrary.Report.excanvas.js
│ │ ├── JSLibrary.Report.jqplot_barRenderer.js
│ │ ├── JSLibrary.Report.jqplot_BezierCurveRenderer.js
│ │ ├── JSLibrary.Report.jqplot_canvasAxisLabelRenderer.js
│ │ ├── JSLibrary.Report.jqplot_canvasAxisTickRenderer.js
│ │ ├── JSLibrary.Report.jqplot_canvasTextRenderer.js
│ │ ├── JSLibrary.Report.jqplot_categoryAxisRenderer.js
│ │ ├── JSLibrary.Report.jqplot_cursor.js
│ │ ├── JSLibrary.Report.jqplot_dateAxisRenderer.js
│ │ ├── JSLibrary.Report.jqplot_donutRenderer.js
│ │ ├── JSLibrary.Report.jqplot_highlighter.js
│ │ ├── JSLibrary.Report.jqplot_logAxisRenderer.js
│ │ ├── JSLibrary.Report.jqplot_ohlcRenderer.js
│ │ ├── JSLibrary.Report.jqplot_pieRenderer.js
│ │ ├── JSLibrary.Report.jquery_jqplot.js
│ │ ├── JSLibrary.WebJS.Exam.Card_Plan.js
│ │ ├── JSLibrary.WebJS.Exam.Card_Query.js
│ │ ├── JSLibrary.WebJS.Exam.Exam_Monitor.js
│ │ ├── JSLibrary.WebJS.Exam.ExamPaper.js
│ │ ├── JSLibrary.WebJS.Exam.Exam_Persitence.js
│ │ ├── JSLibrary.WebJS.Exam.Exam_Result_Role.js
│ │ ├── JSLibrary.WebJS.Exam.Exam_Result_Role_Manage.js
│ │ ├── JSLibrary.WebJS.Exam.Exam_Result_Role_Sub.js
│ │ ├── JSLibrary.WebJS.Exam.Exam_Result_Role_Sub_Manage.js
│ │ ├── JSLibrary.WebJS.Exam.Exam_Type_Main.js
│ │ ├── JSLibrary.WebJS.Exam.Exam_Type_Right.js
│ │ ├── JSLibrary.WebJS.Exam.Labor_Exam_Edit.js
│ │ ├── JSLibrary.WebJS.Exam.Labor_Exam.js
│ │ ├── JSLibrary.WebJS.Exam.Labor_Exam_View.js
│ │ ├── JSLibrary.WebJS.Exam.Labor_Plan.js
│ │ ├── JSLibrary.WebJS.Exam.Plan_Manage.js
│ │ ├── JSLibrary.WebJS.Exam.Plan_Monitor.js
│ │ ├── JSLibrary.WebJS.Exam.Plan_Query.js
│ │ ├── JSLibrary.WebJS.Exam.Preview_Exam.js
│ │ ├── JSLibrary.WebJS.Exam.Read_Exam.js
│ │ ├── JSLibrary.WebJS.ExamReport.Dep_Exam_Plan.js
│ │ ├── JSLibrary.WebJS.ExamReport.Exam_Plan_Info.js
│ │ ├── JSLibrary.WebJS.ExamReport.Exam_Plan_User.js
│ │ ├── JSLibrary.WebJS.ExamReport.Exam_Plan_User_T.js
│ │ ├── JSLibrary.WebJS.ExamReport.Exam_Question_Plan.js
│ │ ├── JSLibrary.WebJS.ExamReport.Exam_Result_Info.js
│ │ ├── JSLibrary.WebJS.ExamReport.Exam_Result_T.js
│ │ ├── JSLibrary.WebJS.ExamReport.PLAN_DEP_T.js
│ │ ├── JSLibrary.WebJS.ExamReport.Report_Main.js
│ │ ├── JSLibrary.WebJS.Exam.Result_Exam.js
│ │ ├── JSLibrary.WebJS.Exam.Result_Plan.js
│ │ ├── JSLibrary.WebJS.Exam.Test_Manage.js
│ │ ├── JSLibrary.WebJS.Exam.Test_Query.js
│ │ ├── JSLibrary.WebJS.Exam.User_Error_Exam.js
│ │ ├── JSLibrary.WebJS.Exam.User_Error_Query.js
│ │ ├── JSLibrary.WebJS.Exam.User_Exam_Error_Query.js
│ │ ├── JSLibrary.WebJS.Exam.User_Exam_History_Query.js
│ │ ├── JSLibrary.WebJS.Exam.User_Exam.js
│ │ ├── JSLibrary.WebJS.Exam.User_Exam_Query.js
│ │ ├── JSLibrary.WebJS.Exam.User_Exam_Reset_Query.js
│ │ ├── JSLibrary.WebJS.Exam.User_Exam_Single.js
│ │ ├── JSLibrary.WebJS.Exam.User_Test_History_Exam.js
│ │ ├── JSLibrary.WebJS.Exam.User_Test_History.js
│ │ ├── JSLibrary.WebJS.Exam.User_Test_Labor_Exam.js
│ │ ├── JSLibrary.WebJS.Exam.User_Test_Labor.js
│ │ ├── JSLibrary.WebJS.Exam.User_Test_Query.js
│ │ ├── JSLibrary.WebJS.Exam.View_Exam.js
│ │ ├── JSLibrary.WebJS.Info.Message_Draft.js
│ │ ├── JSLibrary.WebJS.Info.Message_Inbox.js
│ │ ├── JSLibrary.WebJS.Info.Message_Outbox.js
│ │ ├── JSLibrary.WebJS.Info.Message_View.js
│ │ ├── JSLibrary.WebJS.Info.Message_Write.js
│ │ ├── JSLibrary.WebJS.Info.New_Manage.js
│ │ ├── JSLibrary.WebJS.Info.New_Query.js
│ │ ├── JSLibrary.WebJS.Info.New_Type_Main.js
│ │ ├── JSLibrary.WebJS.Info.New_Type_Right.js
│ │ ├── JSLibrary.WebJS.Info.New_User_Query.js
│ │ ├── JSLibrary.WebJS.Info.Notebook_Main.js
│ │ ├── JSLibrary.WebJS.Info.Notebook_Right.js
│ │ ├── JSLibrary.WebJS.Info.Notebook_Type_Main.js
│ │ ├── JSLibrary.WebJS.Info.Notebook_Type_Right.js
│ │ ├── JSLibrary.WebJS.Info.Vote_Manage.js
│ │ ├── JSLibrary.WebJS.Info.Vote_Query.js
│ │ ├── JSLibrary.WebJS.Info.Vote_Result_Query.js
│ │ ├── JSLibrary.WebJS.Info.Vote_Sub_Manage.js
│ │ ├── JSLibrary.WebJS.Info.Vote_Type_Main.js
│ │ ├── JSLibrary.WebJS.Info.Vote_Type_Right.js
│ │ ├── JSLibrary.WebJS.Info.Vote_User.js
│ │ ├── JSLibrary.WebJS.LoginAD.js
│ │ ├── JSLibrary.WebJS.Login.js
│ │ ├── JSLibrary.WebJS.Paper.Paper_Manage.js
│ │ ├── JSLibrary.WebJS.Paper.Paper_Query.js
│ │ ├── JSLibrary.WebJS.Paper.Paper_Type_Query.js
│ │ ├── JSLibrary.WebJS.Paper.Paper_Type_Random_Query.js
│ │ ├── JSLibrary.WebJS.Paper.Paper_Type_R_Query.js
│ │ ├── JSLibrary.WebJS.Question.GroupCenter.js
│ │ ├── JSLibrary.WebJS.Question.Knowledge_Main.js
│ │ ├── JSLibrary.WebJS.Question.Knowledge_Right.js
│ │ ├── JSLibrary.WebJS.Question.Question_Manage.js
│ │ ├── JSLibrary.WebJS.Question.Question_Query.js
│ │ ├── JSLibrary.WebJS.Question.Question_Type_Manage.js
│ │ ├── JSLibrary.WebJS.Question.Question_Type_Query.js
│ │ ├── JSLibrary.WebJS.Question.Question_View.js
│ │ ├── JSLibrary.WebJS.System.Dep_Main.js
│ │ ├── JSLibrary.WebJS.System.Dep_Right.js
│ │ ├── JSLibrary.WebJS.System.Module_Manage.js
│ │ ├── JSLibrary.WebJS.System.Module_Query.js
│ │ ├── JSLibrary.WebJS.System.Online_User.js
│ │ ├── JSLibrary.WebJS.System.Position_Main.js
│ │ ├── JSLibrary.WebJS.System.Position_Right.js
│ │ ├── JSLibrary.WebJS.System.Role_Manage.js
│ │ ├── JSLibrary.WebJS.System.Role_Query.js
│ │ ├── JSLibrary.WebJS.System.Stu_User_Manage.js
│ │ ├── JSLibrary.WebJS.System.Stu_User_Query.js
│ │ ├── JSLibrary.WebJS.System.Stu_User_Regist.js
│ │ ├── JSLibrary.WebJS.System.System_Config.js
│ │ ├── JSLibrary.WebJS.System.User_Info_Manage.js
│ │ ├── JSLibrary.WebJS.System.User_Pwd_Manage.js
│ │ ├── JSLibrary.WebJS.Top.js
│ │ ├── JSLibrary.WebJS.UserControl.Check.js
│ │ ├── JSLibrary.WebJS.UserControl.FileUpLoad.js
│ │ ├── JSLibrary.WebJS.UserControl.User_Select.js
│ │ ├── JSLibrary.WebJS.Web.js
│ │ ├── JSLibrary.WebPublic.jquery_142_min.js
│ │ ├── JSLibrary.WebPublic.jquery_divbox.js
│ │ ├── JSLibrary.WebPublic.jquery.js
│ │ ├── JSLibrary.WebPublic.Public.js
│ │ ├── JSLibrary.WebPublic.SetDate.js
│ │ ├── JSLibrary.WebPublic.Validate.js
│ │ └── JSLibrary.WebPublic.winForm.js
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Report
│ │ ├── excanvas.js
│ │ ├── jqplot_barRenderer.js
│ │ ├── jqplot_BezierCurveRenderer.js
│ │ ├── jqplot_canvasAxisLabelRenderer.js
│ │ ├── jqplot_canvasAxisTickRenderer.js
│ │ ├── jqplot_canvasTextRenderer.js
│ │ ├── jqplot_categoryAxisRenderer.js
│ │ ├── jqplot_cursor.js
│ │ ├── jqplot_dateAxisRenderer.js
│ │ ├── jqplot_donutRenderer.js
│ │ ├── jqplot_highlighter.js
│ │ ├── jqplot_logAxisRenderer.js
│ │ ├── jqplot_ohlcRenderer.js
│ │ ├── jqplot_pieRenderer.js
│ │ └── jquery_jqplot.js
│ ├── SystemJS.cs
│ ├── UserControlJS.cs
│ ├── WebJS
│ │ ├── Exam
│ │ │ ├── Exam_Type_Main.js
│ │ │ └── Exam_Type_Right.js
│ │ ├── Info
│ │ │ ├── Message_Draft.js
│ │ │ ├── Message_Inbox.js
│ │ │ ├── Message_Outbox.js
│ │ │ ├── Message_View.js
│ │ │ ├── Message_Write.js
│ │ │ ├── New_Manage.js
│ │ │ ├── New_Query.js
│ │ │ ├── New_Type_Main.js
│ │ │ ├── New_Type_Right.js
│ │ │ ├── New_User_Query.js
│ │ │ ├── Notebook_Main.js
│ │ │ ├── Notebook_Right.js
│ │ │ ├── Notebook_Type_Main.js
│ │ │ └── Notebook_Type_Right.js
│ │ ├── LoginAD.js
│ │ ├── Login.js
│ │ ├── System
│ │ │ ├── Dep_Main.js
│ │ │ ├── Dep_Right.js
│ │ │ ├── Module_Manage.js
│ │ │ ├── Module_Query.js
│ │ │ ├── Online_User.js
│ │ │ ├── Position_Main.js
│ │ │ ├── Position_Right.js
│ │ │ ├── Role_Manage.js
│ │ │ ├── Role_Query.js
│ │ │ ├── Stu_User_Manage.js
│ │ │ ├── Stu_User_Query.js
│ │ │ ├── Stu_User_Regist.js
│ │ │ ├── System_Config.js
│ │ │ ├── User_Info_Manage.js
│ │ │ └── User_Pwd_Manage.js
│ │ ├── Top.js
│ │ ├── UserControl
│ │ │ ├── Check.js
│ │ │ ├── FileUpLoad.js
│ │ │ └── User_Select.js
│ │ └── Web.js
│ ├── WebPublic
│ │ ├── jquery_142_min.js
│ │ ├── jquery_divbox_exam.js
│ │ ├── jquery_divbox.js
│ │ ├── jquery.js
│ │ ├── Public.js
│ │ ├── SetDate.js
│ │ ├── Validate.js
│ │ └── winForm.js
│ └── WebSit.cs
├── SysFW
│ ├── bin
│ │ └── Debug
│ │ ├── AutoDA2G.dll
│ │ ├── SysFW.dll
│ │ ├── SysFW.pdb
│ │ └── SysFW.rar
│ ├── Config
│ │ └── AppConfig.cs
│ ├── Dog
│ │ ├── DogManage.cs
│ │ └── ReadDog.cs
│ ├── Exception
│ │ ├── ExceptionPolicies.cs
│ │ └── SystemException.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ │ └── SysFW.dll
│ │ │ ├── SysFW.dll
│ │ │ └── SysFW.pdb
│ │ ├── SysFW.csproj.FileListAbsolute.txt
│ │ └── SysFW.csproj.FileList.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Security
│ │ └── MD5.cs
│ └── SysFW.csproj
├── Timber_Exam.ad
├── Timber_Exam.sln
├── Timber_Exam.suo
└── WebSite
├── App_Image
│ ├── Admin
│ │ ├── card_manage.png
│ │ ├── Card_Plan.png
│ │ ├── Dep_Exam_Plan_Manage.png
│ │ ├── Dep_Exam_Plan.png
│ │ ├── dep_manage.png
│ │ ├── error_question.png
│ │ ├── exam_error.png
│ │ ├── exam_history.png
│ │ ├── examMonitor_list2.png
│ │ ├── examMonitor_list.png
│ │ ├── exam_persitence.png
│ │ ├── Exam_Plan_Info.png
│ │ ├── Exam_Plan_User.png
│ │ ├── Exam_Plan_User_T.png
│ │ ├── Exam_Question_Plan.png
│ │ ├── exam_reset.png
│ │ ├── Exam_Result_Info.png
│ │ ├── Exam_Result_Role.png
│ │ ├── Exam_Result_T.png
│ │ ├── exam_type.png
│ │ ├── Knowledge_manage.png
│ │ ├── Labor_Exam.png
│ │ ├── Labor_Plan.png
│ │ ├── message_draft2.png
│ │ ├── Message_Draft.png
│ │ ├── Message_Inbox.png
│ │ ├── Message_Outbox.png
│ │ ├── message_relay.png
│ │ ├── message_return.png
│ │ ├── Message_View.png
│ │ ├── Message_Write.png
│ │ ├── Message_Write_View.png
│ │ ├── module-list.png
│ │ ├── Module-Manage.png
│ │ ├── new_list.png
│ │ ├── New_Manage.png
│ │ ├── new_type.png
│ │ ├── notebook_manage.png
│ │ ├── notebook_type_manage.png
│ │ ├── notice_list.png
│ │ ├── notice_manage.png
│ │ ├── notice_type.png
│ │ ├── Online_User.png
│ │ ├── paper_list.png
│ │ ├── Paper_Manage.png
│ │ ├── Paper_Type_R_Query.png
│ │ ├── PLAN_DEP_T.png
│ │ ├── plan_list.png
│ │ ├── Plan_Manage.png
│ │ ├── position_manage.png
│ │ ├── qtype_list.png
│ │ ├── qtype_manage.png
│ │ ├── question_list.png
│ │ ├── Question_Manage.png
│ │ ├── questiontype_manage.png
│ │ ├── Question_View.png
│ │ ├── report_manage.png
│ │ ├── result_list.png
│ │ ├── Result_manage.png
│ │ ├── result_print.png
│ │ ├── role_list.png
│ │ ├── Role_Manage.png
│ │ ├── stu_list.png
│ │ ├── stu_manage.png
│ │ ├── system_help.png
│ │ ├── system_manage.png
│ │ ├── system_update.png
│ │ ├── test_list.png
│ │ ├── Test_Manage.png
│ │ ├── test_persitence.png
│ │ ├── Thumbs.db
│ │ ├── userexam_list.png
│ │ ├── User_Info_Manage.png
│ │ ├── user_manage_pwd.png
│ │ ├── User_Test_History_Exam.png
│ │ ├── user_test_history_list.png
│ │ ├── User_Test_Labor_Exam.png
│ │ ├── user_test_list.png
│ │ ├── user_test_manage.png
│ │ ├── Vote_List.png
│ │ ├── Vote_Manage.png
│ │ ├── Vote_Online.png
│ │ ├── Vote_Result.png
│ │ ├── Vote_Result_View.png
│ │ ├── Vote_Sub_Manage.png
│ │ ├── Vote_Type.png
│ │ └── 底色-栏目标题-蓝.psd
│ ├── editor.js
│ ├── Public
│ │ ├── 404.jpg
│ │ ├── admin-logo.png
│ │ ├── anc.gif
│ │ ├── bg_body.gif
│ │ ├── bg_body.png
│ │ ├── big女.GIF
│ │ ├── big男.GIF
│ │ ├── btn.gif
│ │ ├── button_b_b.png
│ │ ├── button_b.png
│ │ ├── button_b_s.png
│ │ ├── button_g_b.png
│ │ ├── button_g.png
│ │ ├── button_g_s.png
│ │ ├── button_h_b.png
│ │ ├── button_h.png
│ │ ├── button_h_s.png
│ │ ├── button_r_b.png
│ │ ├── button_r.png
│ │ ├── button_r_s.png
│ │ ├── button_y_b.png
│ │ ├── button_y.png
│ │ ├── button_y_s.png
│ │ ├── class.png
│ │ ├── commendfalse.gif
│ │ ├── commendtrue.gif
│ │ ├── delete_2.png
│ │ ├── delete.png
│ │ ├── edit_2.png
│ │ ├── edit.png
│ │ ├── error.gif
│ │ ├── error.png
│ │ ├── exam_top_l.png
│ │ ├── exam_top_m.png
│ │ ├── exam_top_r.png
│ │ ├── filedown.png
│ │ ├── file.gif
│ │ ├── folder-closed.gif
│ │ ├── folder.gif
│ │ ├── help.gif
│ │ ├── hotfalse.gif
│ │ ├── hottrue.gif
│ │ ├── icon.png
│ │ ├── Line.gif
│ │ ├── loading.gif
│ │ ├── message_1.gif
│ │ ├── message_2.gif
│ │ ├── message_3.gif
│ │ ├── messageclose.gif
│ │ ├── messageclose.png
│ │ ├── play.png
│ │ ├── search_s.gif
│ │ ├── select.gif
│ │ ├── shijuan.gif
│ │ ├── shijuan.png
│ │ ├── testfalse.png
│ │ ├── testtrue.png
│ │ ├── Thumbs.db
│ │ ├── toolbottom.png
│ │ ├── ui-anim_basic_16x16.gif
│ │ ├── userlogo.gif
│ │ ├── view_2.png
│ │ ├── view.gif
│ │ ├── 女.gif
│ │ └── 男.gif
│ └── System
│ ├── 01.gif
│ ├── 02.gif
│ ├── 03.jpg
│ ├── 04.jpg
│ ├── 05.gif
│ ├── bottombg.gif
│ ├── loginbg.gif
│ ├── loginbottom.gif
│ ├── logincenter.gif
│ ├── logintop.gif
│ ├── menubackground.gif
│ ├── menubg.gif
│ ├── menuselectbg.gif
│ ├── Thumbs.db
│ ├── top2l.gif
│ ├── top2m.gif
│ ├── top2r.gif
│ ├── topl.gif
│ ├── topmenuline.gif
│ ├── topm.gif
│ └── topr.gif
├── App_Themes
│ └── Default
│ ├── Control.css
│ ├── icon.css
│ ├── images
│ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png
│ │ ├── ui-icons_222222_256x240.png
│ │ ├── ui-icons_228ef1_256x240.png
│ │ ├── ui-icons_cc0000_256x240.png
│ │ └── ui-icons_ffffff_256x240.png
│ ├── SkinFile.skin
│ └── StyleSheet.css
├── Bin
│ ├── AjaxControlToolkit.dll
│ ├── AjaxControlToolkit.dll.refresh
│ ├── AspNetPager.dll
│ ├── AspNetPager.dll.refresh
│ ├── AutoDA2G.dll
│ ├── AutoDA2G.dll.refresh
│ ├── Business.dll
│ ├── Business.pdb
│ ├── Common.dll
│ ├── Common.pdb
│ ├── DBCommon.dll
│ ├── DBCommon.pdb
│ ├── Exam_Business.dll
│ ├── Exam_Business.pdb
│ ├── Facade.dll
│ ├── Facade.pdb
│ ├── Interop.Excel.dll
│ ├── Interop.Word.dll
│ ├── JSLibrary.dll
│ ├── JSLibrary.pdb
│ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll.refresh
│ ├── SysFW.dll
│ ├── SysFW.dll.refresh
│ ├── System.Web.Extensions.Design.dll
│ ├── System.Web.Extensions.Design.dll.refresh
│ ├── System.Web.Extensions.dll
│ ├── System.Web.Extensions.dll.refresh
│ └── Win32dll.dll
├── Bottom.aspx
├── Bottom.aspx.cs
├── Default.aspx
├── Default.aspx.cs
├── DownWebIE.aspx
├── DownWebIE.aspx.cs
├── ExamIE.rar
├── favicon.ico
├── Global.asax
├── Info
│ ├── ajax.aspx
│ ├── ajax.aspx.cs
│ ├── Message_Draft.aspx
│ ├── Message_Draft.aspx.cs
│ ├── Message_Inbox.aspx
│ ├── Message_Inbox.aspx.cs
│ ├── Message_Outbox.aspx
│ ├── Message_Outbox.aspx.cs
│ ├── Message_View.aspx
│ ├── Message_View.aspx.cs
│ ├── Message_Write.aspx
│ ├── Message_Write.aspx.cs
│ ├── New_Manage.aspx
│ ├── New_Manage.aspx.cs
│ ├── New_Query.aspx
│ ├── New_Query.aspx.cs
│ ├── New_Type_Left.aspx
│ ├── New_Type_Left.aspx.cs
│ ├── New_Type_Main.aspx
│ ├── New_Type_Main.aspx.cs
│ ├── New_Type_Right.aspx
│ ├── New_Type_Right.aspx.cs
│ ├── New_User_Query.aspx
│ ├── New_User_Query.aspx.cs
│ ├── New_View.aspx
│ ├── New_View.aspx.cs
│ ├── Notebook_Left.aspx
│ ├── Notebook_Left.aspx.cs
│ ├── Notebook_Main.aspx
│ ├── Notebook_Main.aspx.cs
│ ├── Notebook_Right.aspx
│ ├── Notebook_Right.aspx.cs
│ ├── Notebook_Type_Left.aspx
│ ├── Notebook_Type_Left.aspx.cs
│ ├── Notebook_Type_Main.aspx
│ ├── Notebook_Type_Main.aspx.cs
│ ├── Notebook_Type_Right.aspx
│ └── Notebook_Type_Right.aspx.cs
├── ip.aspx
├── ip.aspx.cs
├── Left.aspx
├── Left.aspx.cs
├── LoginAD.aspx
├── LoginAD.aspx.cs
├── Login.aspx
├── Login.aspx.cs
├── LoginOut.aspx
├── LoginOut.aspx.cs
├── Right.aspx
├── Right.aspx.cs
├── RightLine.aspx
├── RightLine.aspx.cs
├── System
│ ├── ajax.aspx
│ ├── ajax.aspx.cs
│ ├── Dep_Left.aspx
│ ├── Dep_Left.aspx.cs
│ ├── Dep_Main.aspx
│ ├── Dep_Main.aspx.cs
│ ├── Dep_Right.aspx
│ ├── Dep_Right.aspx.cs
│ ├── DomainTest.aspx
│ ├── DomainTest.aspx.cs
│ ├── Module_Manage.aspx
│ ├── Module_Manage.aspx.cs
│ ├── Module_Query.aspx
│ ├── Module_Query.aspx.cs
│ ├── Online_User.aspx
│ ├── Online_User.aspx.cs
│ ├── Position_Left.aspx
│ ├── Position_Left.aspx.cs
│ ├── Position_Main.aspx
│ ├── Position_Main.aspx.cs
│ ├── Position_Right.aspx
│ ├── Position_Right.aspx.cs
│ ├── Role_Manage.aspx
│ ├── Role_Manage.aspx.cs
│ ├── Role_Query.aspx
│ ├── Role_Query.aspx.cs
│ ├── Stu_User_Manage.aspx
│ ├── Stu_User_Manage.aspx.cs
│ ├── Stu_User_Query.aspx
│ ├── Stu_User_Query.aspx.cs
│ ├── Stu_User_Regist.aspx
│ ├── Stu_User_Regist.aspx.cs
│ ├── System_Config.aspx
│ ├── System_Config.aspx.cs
│ ├── System_Help.aspx
│ ├── System_Help.aspx.cs
│ ├── Update.aspx
│ ├── Update.aspx.cs
│ ├── User_Info_Manage.aspx
│ ├── User_Info_Manage.aspx.cs
│ ├── User_Pwd_Manage.aspx
│ ├── User_Pwd_Manage.aspx.cs
│ └── 用户注册System.rar
├── SystemConfig.xml
├── Timber_Exam.url
├── Top.aspx
├── Top.aspx.cs
├── UpLoad
│ ├── ExcelTemplate
│ │ ├── DEP_EXAM.xls
│ │ ├── Exam_Monitor.xls
│ │ ├── EXAM_PLAN_DEP.xls
│ │ ├── EXAM_QUESTION_INFO.txt
│ │ ├── EXAM_QUESTION_INFO.xls
│ │ ├── Labor_Exam.xls
│ │ ├── REPORT_EXAM_PLAN_USER_T.xls
│ │ ├── Result_Exam_Full.xls
│ │ ├── Result_Exam.xls
│ │ ├── SingleTitle.xls
│ │ ├── SYSTEM_MODULE_INFO.xls
│ │ └── USER_STU_INFO.xls
│ ├── ExExecl
│ │ ├── Exam_Monitor.xls
│ │ ├── EXAM_QUESTION_INFO.xls
│ │ ├── Result_Exam_Full.xls
│ │ ├── Result_Exam.xls
│ │ ├── USER_STU_INFO.xls
│ │ └── 说明.txt
│ ├── ExTxt
│ │ ├── EXAM_QUESTION_INFO.txt
│ │ ├── USER_STU_INFO.txt
│ │ └── 说明.txt
│ ├── Log
│ │ └── 说明.txt
│ ├── System
│ │ ├── picture
│ │ │ └── 桌面联系人s_20120910609375.xls
│ │ └── 说明.txt
│ ├── Temp
│ │ └── 说明.txt
│ └── WordTemplate
│ └── Paper.dot
├── UserControl
│ ├── ajax.aspx
│ ├── ajax.aspx.cs
│ ├── ConfirmBox.ascx
│ ├── ConfirmBox.ascx.cs
│ ├── Dep_Info.ascx
│ ├── Dep_Info.ascx.cs
│ ├── Dep_Info_Check.ascx
│ ├── Dep_Info_Check.ascx.cs
│ ├── Error404.aspx
│ ├── Error404.aspx.cs
│ ├── ErrorPage.aspx
│ ├── ErrorPage.aspx.cs
│ ├── Exam_Type_Check.ascx
│ ├── Exam_Type_Check.ascx.cs
│ ├── Exam_Type_Select.ascx
│ ├── Exam_Type_Select.ascx.cs
│ ├── IconBox.ascx
│ ├── IconBox.ascx.cs
│ ├── MessageBox250.ascx
│ ├── MessageBox250.ascx.cs
│ ├── MessageBox.ascx
│ ├── MessageBox.ascx.cs
│ ├── Module_Info.ascx
│ ├── Module_Info.ascx.cs
│ ├── New_Type_Info.ascx
│ ├── New_Type_Info.ascx.cs
│ ├── NoteBook_Info.ascx
│ ├── NoteBook_Info.ascx.cs
│ ├── NoteBook_Type.ascx
│ ├── NoteBook_Type.ascx.cs
│ ├── Position_Info.ascx
│ ├── Position_Info.ascx.cs
│ ├── Position_Info_Check.ascx
│ ├── Position_Info_Check.ascx.cs
│ ├── SetFontSize.ascx
│ ├── SetFontSize.ascx.cs
│ ├── upload.aspx
│ ├── upload.aspx.cs
│ ├── User_Select.aspx
│ ├── User_Select.aspx.cs
│ ├── Vote_Type_Info.ascx
│ └── Vote_Type_Info.ascx.cs
└── Web.Config
126 directories, 947 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论