实例介绍
1)主要题型 填空题、判断题、单选题、多选题、简答题。 2)组卷方式 人工选题: 通过选择各种题型的题库组成卷子,最多可以由5种题型组成(填空题、判断题、 单选题、多选题、简答题); 随机抽题: 通过设置各类题型的题库数量,由系统随机抽取试题组成卷子,最多可以由3种 题型组成(判断题、单选题、多选题); 手工输入: 通过手工输入试题内容的文本,可以事先用word把考题设计好,然后粘贴到编辑 框中。 3)考试安排 考试安排的流程为: 选择试卷分类->选择试卷->分配分数->选择考试人员->设置考试参数->提交 4)评卷工作 对于手工选题组成的卷子:判断题、
【实例截图】
【核心代码】
0095e4d5-a6d0-41cf-aa37-b0ac8cecab8f
└── TestOnLine10
├── BLL
│ ├── bin
│ │ └── Debug
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── Entity.dll
│ │ ├── Entity.pdb
│ │ ├── Tool.dll
│ │ └── Tool.pdb
│ ├── BLLAdmin.cs
│ ├── BLLCountMark.cs
│ ├── BLL.csproj
│ ├── BLLDepartment.cs
│ ├── BLLException.cs
│ ├── BLLPaperByManuaSelection.cs
│ ├── BLLPaperByRandomSelection.cs
│ ├── BLLPaper.cs
│ ├── BLLSubjectOfFillBlank.cs
│ ├── BLLSubjectOfJudge.cs
│ ├── BLLSubjectOfMultiSelection.cs
│ ├── BLLSubjectOfSimpleAnswer.cs
│ ├── BLLSubjectOfSingleSelection.cs
│ ├── BLLSubjectTypeCategory.cs
│ ├── BLLTest.cs
│ ├── BLLTester.cs
│ ├── BLLTestMark.cs
│ ├── BLLTestRecorder.cs
│ ├── BLLUser.cs
│ ├── Class1.cs
│ ├── IBLLSubject.cs
│ ├── obj
│ │ ├── BLL.csproj.FileList.txt
│ │ └── Debug
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── Refactor
│ │ │ └── BLL.dll
│ │ └── ResolveAssemblyReference.cache
│ └── Properties
│ └── AssemblyInfo.cs
├── ConsoleTest
│ ├── bin
│ │ └── Debug
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── ConsoleTest.exe
│ │ ├── ConsoleTest.pdb
│ │ ├── ConsoleTest.vshost.exe
│ │ ├── ConsoleTest.vshost.exe.manifest
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── Entity.dll
│ │ ├── Entity.pdb
│ │ ├── Tool.dll
│ │ └── Tool.pdb
│ ├── ConsoleTest.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── ConsoleTest.csproj.FileListAbsolute.txt
│ │ ├── ConsoleTest.exe
│ │ ├── ConsoleTest.pdb
│ │ └── ResolveAssemblyReference.cache
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── DAL
│ ├── bin
│ │ └── Debug
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── DBOperation.dll
│ │ ├── DBOperation.pdb
│ │ ├── Entity.dll
│ │ ├── Entity.pdb
│ │ ├── Tool.dll
│ │ └── Tool.pdb
│ ├── ClassDiagram1.cd
│ ├── DAL.csproj
│ ├── DBCountMark.cs
│ ├── DBDepartment.cs
│ ├── DBHelper2.cs
│ ├── DBHelper.cs
│ ├── DBOperation.cs
│ ├── DBPaperByManualSelection.cs
│ ├── DBPaperByRandomSelection.cs
│ ├── DBPaper.cs
│ ├── DBSubjectOfFillBlank.cs
│ ├── DBSubjectOfJudge.cs
│ ├── DBSubjectOfMultiSelection.cs
│ ├── DBSubjectOfSimpleAnswer.cs
│ ├── DBSubjectOfSingleSelection.cs
│ ├── DBSubjectTypeCategory.cs
│ ├── DBTest.cs
│ ├── DBTestMark.cs
│ ├── DBTestRecorder.cs
│ ├── DBUser.cs
│ ├── obj
│ │ ├── DAL.csproj.FileList.txt
│ │ ├── DBOperation.csproj.FileList.txt
│ │ └── Debug
│ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── DBOperation.dll
│ │ ├── DBOperation.pdb
│ │ ├── Refactor
│ │ │ └── DAL.dll
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SQLHelper.cs
├── DB
│ ├── TestOnlineDB_Data.MDF
│ └── TestOnlineDB_Log.LDF
├── Entity
│ ├── Admin.cs
│ ├── bin
│ │ └── Debug
│ │ ├── Entity.dll
│ │ ├── Entity.pdb
│ │ └── Microsoft.SqlServer.BatchParser.dll
│ ├── CountMark.cs
│ ├── Department.cs
│ ├── Entity.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Entity.csproj.FileListAbsolute.txt
│ │ │ ├── Entity.dll
│ │ │ ├── Entity.pdb
│ │ │ ├── Refactor
│ │ │ │ └── Entity.dll
│ │ │ └── ResolveAssemblyReference.cache
│ │ └── Entity.csproj.FileList.txt
│ ├── PageList.cs
│ ├── PaperByManualSelection.cs
│ ├── PaperByRandomSelection.cs
│ ├── Paper.cs
│ ├── PaperType.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SubjectOfFillBlank.cs
│ ├── SubjectOfJudge.cs
│ ├── SubjectOfMultiSelection.cs
│ ├── SubjectOfSimpleAnswer.cs
│ ├── SubjectOfSingleSelection.cs
│ ├── SubjectTypeCategory.cs
│ ├── SubjectType.cs
│ ├── Test.cs
│ ├── Tester.cs
│ ├── TestMark.cs
│ ├── TestRecorder.cs
│ └── User.cs
├── Readme
│ ├── tag.txt
│ ├── 使用说明.txt
│ ├── 关于我们.txt
│ ├── 在线考试系统数据库文档.doc
│ ├── 测试账号.txt
│ └── 系统功能.txt
├── TestOnLine.sln
├── TestOnLine.suo
├── Tool
│ ├── bin
│ │ └── Debug
│ │ ├── Tool.dll
│ │ └── Tool.pdb
│ ├── JscriptHelper.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ │ └── Tool.dll
│ │ │ ├── Tool.csproj.FileListAbsolute.txt
│ │ │ ├── Tool.dll
│ │ │ └── Tool.pdb
│ │ └── Tool.csproj.FileList.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SerializeHelper.cs
│ ├── StringHelper.cs
│ └── Tool.csproj
├── Web
│ ├── Admin
│ │ ├── Acount
│ │ │ ├── Logout.aspx
│ │ │ ├── Logout.aspx.cs
│ │ │ ├── ModPwd.aspx
│ │ │ └── ModPwd.aspx.cs
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── FirstPage.aspx
│ │ ├── FirstPage.aspx.cs
│ │ ├── Marking
│ │ │ ├── MarkPaper2.aspx
│ │ │ ├── MarkPaper2.aspx.cs
│ │ │ ├── MarkPaper3.aspx
│ │ │ ├── MarkPaper3.aspx.cs
│ │ │ ├── MarkPaper.aspx
│ │ │ ├── MarkPaper.aspx.cs
│ │ │ ├── MarkPaperList.aspx
│ │ │ ├── MarkPaperList.aspx.cs
│ │ │ ├── TesterList.aspx
│ │ │ └── TesterList.aspx.cs
│ │ ├── Paper
│ │ │ ├── AddPaper.aspx
│ │ │ ├── AddPaper.aspx.cs
│ │ │ ├── AddPaperByManualSelection.aspx
│ │ │ ├── AddPaperByManualSelection.aspx.cs
│ │ │ ├── AddPaperByRandomSelection.aspx
│ │ │ ├── AddPaperByRandomSelection.aspx.cs
│ │ │ ├── DelPaper.aspx
│ │ │ ├── DelPaper.aspx.cs
│ │ │ ├── ftb.colorpicker.aspx
│ │ │ ├── ftb.imagegallery.aspx
│ │ │ ├── ftb.inserttable.aspx
│ │ │ ├── ModPaper.aspx
│ │ │ ├── ModPaper.aspx.cs
│ │ │ ├── PaperByManualSelectionDetail.aspx
│ │ │ ├── PaperByManualSelectionDetail.aspx.cs
│ │ │ ├── PaperByManualSelectionList.aspx
│ │ │ ├── PaperByManualSelectionList.aspx.cs
│ │ │ ├── PaperByRandomSelectionDetail.aspx
│ │ │ ├── PaperByRandomSelectionDetail.aspx.cs
│ │ │ ├── PaperByRandomSelectionList.aspx
│ │ │ ├── PaperByRandomSelectionList.aspx.cs
│ │ │ ├── PaperDetail.aspx
│ │ │ ├── PaperDetail.aspx.cs
│ │ │ ├── PaperList.aspx
│ │ │ ├── PaperList.aspx.cs
│ │ │ ├── PreviewPaper.aspx
│ │ │ ├── PreviewPaper.aspx.cs
│ │ │ ├── SubjectOfFillBlankList.aspx
│ │ │ ├── SubjectOfFillBlankList.aspx.cs
│ │ │ ├── SubjectOfJudgeList.aspx
│ │ │ ├── SubjectOfJudgeList.aspx.cs
│ │ │ ├── SubjectOfMultiSelectionList.aspx
│ │ │ ├── SubjectOfMultiSelectionList.aspx.cs
│ │ │ ├── SubjectOfSimpleAnswerList.aspx
│ │ │ ├── SubjectOfSimpleAnswerList.aspx.cs
│ │ │ ├── SubjectOfSingleSelectionList.aspx
│ │ │ ├── SubjectOfSingleSelectionList.aspx.cs
│ │ │ ├── TestContent.aspx
│ │ │ └── TestContent.aspx.cs
│ │ ├── Scores
│ │ │ ├── AnswerDetail.aspx
│ │ │ ├── AnswerDetail.aspx.cs
│ │ │ ├── CountMark.aspx
│ │ │ ├── CountMark.aspx.cs
│ │ │ ├── TesterMarkedList.aspx
│ │ │ ├── TesterMarkedList.aspx.cs
│ │ │ ├── TestMarkedList.aspx
│ │ │ ├── TestMarkedList.aspx.cs
│ │ │ ├── TestMarkedUserList.aspx
│ │ │ └── TestMarkedUserList.aspx.cs
│ │ ├── Subject
│ │ │ ├── AddSubjectOfFillBlank.aspx
│ │ │ ├── AddSubjectOfFillBlank.aspx.cs
│ │ │ ├── AddSubjectOfJudge.aspx
│ │ │ ├── AddSubjectOfJudge.aspx.cs
│ │ │ ├── AddSubjectOfMultiSelection.aspx
│ │ │ ├── AddSubjectOfMultiSelection.aspx.cs
│ │ │ ├── AddSubjectOfSimpleAnswer.aspx
│ │ │ ├── AddSubjectOfSimpleAnswer.aspx.cs
│ │ │ ├── AddSubjectOfSingleSelection.aspx
│ │ │ ├── AddSubjectOfSingleSelection.aspx.cs
│ │ │ ├── AddSubjectTypeCategory.aspx
│ │ │ ├── AddSubjectTypeCategory.aspx.cs
│ │ │ ├── DelSubject.aspx
│ │ │ ├── DelSubject.aspx.cs
│ │ │ ├── SubjectOfFillBlankList.aspx
│ │ │ ├── SubjectOfFillBlankList.aspx.cs
│ │ │ ├── SubjectOfJudgeList.aspx
│ │ │ ├── SubjectOfJudgeList.aspx.cs
│ │ │ ├── SubjectOfMultiSelectionList.aspx
│ │ │ ├── SubjectOfMultiSelectionList.aspx.cs
│ │ │ ├── SubjectOfSimpleAnswerList.aspx
│ │ │ ├── SubjectOfSimpleAnswerList.aspx.cs
│ │ │ ├── SubjectOfSingleSelectionList.aspx
│ │ │ └── SubjectOfSingleSelectionList.aspx.cs
│ │ ├── System
│ │ │ ├── AddDepartment.aspx
│ │ │ ├── AddDepartment.aspx.cs
│ │ │ ├── AddUser.aspx
│ │ │ ├── AddUser.aspx.cs
│ │ │ ├── DelDepartment.aspx
│ │ │ ├── DelDepartment.aspx.cs
│ │ │ ├── DelUser.aspx
│ │ │ ├── DelUser.aspx.cs
│ │ │ ├── DepartmentList.aspx
│ │ │ ├── DepartmentList.aspx.cs
│ │ │ ├── ModDepartment.aspx
│ │ │ ├── ModDepartment.aspx.cs
│ │ │ ├── ModUser.aspx
│ │ │ ├── ModUser.aspx.cs
│ │ │ ├── ResetPwd.aspx
│ │ │ ├── ResetPwd.aspx.cs
│ │ │ ├── UserList.aspx
│ │ │ └── UserList.aspx.cs
│ │ ├── Test
│ │ │ ├── AddTest.aspx
│ │ │ ├── AddTest.aspx.cs
│ │ │ ├── DelTest.aspx
│ │ │ ├── DelTest.aspx.cs
│ │ │ ├── ModTest.aspx
│ │ │ ├── ModTest.aspx.cs
│ │ │ ├── PaperByManualSelectionDetail.aspx
│ │ │ ├── PaperByManualSelectionDetail.aspx.cs
│ │ │ ├── PaperByRandomSelectionDetail.aspx
│ │ │ ├── PaperByRandomSelectionDetail.aspx.cs
│ │ │ ├── SelectPaper.aspx
│ │ │ ├── SelectPaper.aspx.cs
│ │ │ ├── SetScores2.aspx
│ │ │ ├── SetScores2.aspx.cs
│ │ │ ├── SetScores.aspx
│ │ │ ├── SetScores.aspx.cs
│ │ │ ├── TestList.aspx
│ │ │ ├── TestList.aspx.cs
│ │ │ ├── ViewTester.aspx
│ │ │ └── ViewTester.aspx.cs
│ │ └── Web.config
│ ├── App_Code
│ │ ├── Helper.cs
│ │ ├── RoleCheck.cs
│ │ └── SessionClass.cs
│ ├── aspnet_client
│ │ └── system_web
│ │ └── 2_0_50727
│ │ └── CrystalReportWebFormViewer4
│ │ ├── css
│ │ │ └── default.css
│ │ ├── html
│ │ │ ├── calendarbottom.html
│ │ │ ├── calendar.html
│ │ │ ├── calendartop.html
│ │ │ ├── crystalexportdialog.htm
│ │ │ └── crystalprinthost.html
│ │ ├── images
│ │ │ ├── toolbar
│ │ │ │ ├── calendar.gif
│ │ │ │ ├── crlogo.gif
│ │ │ │ ├── exportd.gif
│ │ │ │ ├── export.gif
│ │ │ │ ├── export_over.gif
│ │ │ │ ├── Firstd.gif
│ │ │ │ ├── First.gif
│ │ │ │ ├── first_over.gif
│ │ │ │ ├── gotopaged.gif
│ │ │ │ ├── gotopage.gif
│ │ │ │ ├── gotopage_over.gif
│ │ │ │ ├── grouptreed.gif
│ │ │ │ ├── grouptree.gif
│ │ │ │ ├── grouptree_over.gif
│ │ │ │ ├── grouptreepressed.gif
│ │ │ │ ├── Lastd.gif
│ │ │ │ ├── Last.gif
│ │ │ │ ├── last_over.gif
│ │ │ │ ├── Nextd.gif
│ │ │ │ ├── Next.gif
│ │ │ │ ├── next_over.gif
│ │ │ │ ├── Prevd.gif
│ │ │ │ ├── Prev.gif
│ │ │ │ ├── prev_over.gif
│ │ │ │ ├── printd.gif
│ │ │ │ ├── print.gif
│ │ │ │ ├── print_over.gif
│ │ │ │ ├── refreshd.gif
│ │ │ │ ├── Refresh.gif
│ │ │ │ ├── refresh_over.gif
│ │ │ │ ├── searchd.gif
│ │ │ │ ├── Search.gif
│ │ │ │ ├── search_over.gif
│ │ │ │ ├── upd.gif
│ │ │ │ ├── up.gif
│ │ │ │ └── up_over.gif
│ │ │ └── tree
│ │ │ ├── begindots.gif
│ │ │ ├── beginminus.gif
│ │ │ ├── beginplus.gif
│ │ │ ├── blankdots.gif
│ │ │ ├── blank.gif
│ │ │ ├── dots.gif
│ │ │ ├── lastdots.gif
│ │ │ ├── lastminus.gif
│ │ │ ├── lastplus.gif
│ │ │ ├── Magnify.gif
│ │ │ ├── minusbox.gif
│ │ │ ├── minus.gif
│ │ │ ├── plusbox.gif
│ │ │ ├── plus.gif
│ │ │ ├── singleminus.gif
│ │ │ └── singleplus.gif
│ │ └── js
│ │ ├── calendar_param.js
│ │ ├── dt_param.js
│ │ ├── export.js
│ │ ├── KeyDownEvent.js
│ │ ├── print.js
│ │ ├── prompts_param.js
│ │ ├── strings_chs.js
│ │ ├── strings_cht.js
│ │ ├── strings_de.js
│ │ ├── strings_en.js
│ │ ├── strings_es.js
│ │ ├── strings_fr.js
│ │ ├── strings_it.js
│ │ ├── strings_ja.js
│ │ └── strings_ko.js
│ ├── Bin
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── Entity.dll
│ │ ├── Entity.pdb
│ │ ├── FreeTextBox.dll
│ │ ├── FreeTextBox.dll.refresh
│ │ ├── FreeTextBox.pdb
│ │ ├── FreeTextBox.xml
│ │ ├── System.Web.Extensions.dll
│ │ ├── Tool.dll
│ │ └── Tool.pdb
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── Error
│ │ ├── Error.aspx
│ │ └── Error.aspx.cs
│ ├── Global.asax
│ ├── images
│ │ ├── ftb
│ │ │ ├── folder.big.gif
│ │ │ ├── folder.small.gif
│ │ │ ├── folder.up.gif
│ │ │ ├── insertimagefromgallery.gif
│ │ │ ├── office2000
│ │ │ │ ├── bold.gif
│ │ │ │ ├── bullets.gif
│ │ │ │ ├── center.gif
│ │ │ │ ├── copy.gif
│ │ │ │ ├── createlink.gif
│ │ │ │ ├── cut.gif
│ │ │ │ ├── deletetablecolumn.gif
│ │ │ │ ├── deletetablerow.gif
│ │ │ │ ├── fontbackcolorpicker.gif
│ │ │ │ ├── fontforecolorpicker.gif
│ │ │ │ ├── indent.gif
│ │ │ │ ├── insertdate.gif
│ │ │ │ ├── insertimagefromgallery.gif
│ │ │ │ ├── insertimage.gif
│ │ │ │ ├── insertrule.gif
│ │ │ │ ├── inserttablecolumn.gif
│ │ │ │ ├── inserttable.gif
│ │ │ │ ├── inserttablerow.gif
│ │ │ │ ├── inserttime.gif
│ │ │ │ ├── italic.gif
│ │ │ │ ├── justifycenter.gif
│ │ │ │ ├── justifyfull.gif
│ │ │ │ ├── justifyleft.gif
│ │ │ │ ├── justifyright.gif
│ │ │ │ ├── link.gif
│ │ │ │ ├── mode.design.gif
│ │ │ │ ├── mode.html.gif
│ │ │ │ ├── numberedlist.gif
│ │ │ │ ├── numbers.gif
│ │ │ │ ├── outdent.gif
│ │ │ │ ├── paste.gif
│ │ │ │ ├── print.gif
│ │ │ │ ├── redo.gif
│ │ │ │ ├── removeformat.gif
│ │ │ │ ├── save.gif
│ │ │ │ ├── separator.gif
│ │ │ │ ├── spellcheck.gif
│ │ │ │ ├── strikethrough.gif
│ │ │ │ ├── subscript.gif
│ │ │ │ ├── superscript.gif
│ │ │ │ ├── table.gif
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── toolbar.end.gif
│ │ │ │ ├── toolbar.gif
│ │ │ │ ├── toolbar.start.gif
│ │ │ │ ├── underline.gif
│ │ │ │ ├── undo.gif
│ │ │ │ ├── unlink.gif
│ │ │ │ ├── wordclean.gif
│ │ │ │ └── wordcount.gif
│ │ │ ├── office2003
│ │ │ │ ├── bold.gif
│ │ │ │ ├── bullets.gif
│ │ │ │ ├── copy.gif
│ │ │ │ ├── createlink.gif
│ │ │ │ ├── cut.gif
│ │ │ │ ├── delete.gif
│ │ │ │ ├── deletetablecolumn.gif
│ │ │ │ ├── deletetablerow.gif
│ │ │ │ ├── fontbackcolorpicker.gif
│ │ │ │ ├── fontforecolorpicker.gif
│ │ │ │ ├── indent.gif
│ │ │ │ ├── insertdate.gif
│ │ │ │ ├── insertimagefromgallery.gif
│ │ │ │ ├── insertimage.gif
│ │ │ │ ├── insertrule.gif
│ │ │ │ ├── inserttablecolumn.gif
│ │ │ │ ├── inserttable.gif
│ │ │ │ ├── inserttablerow.gif
│ │ │ │ ├── inserttime.gif
│ │ │ │ ├── italic.gif
│ │ │ │ ├── justifycenter.gif
│ │ │ │ ├── justifyfull.gif
│ │ │ │ ├── justifyleft.gif
│ │ │ │ ├── justifyright.gif
│ │ │ │ ├── mode.design.gif
│ │ │ │ ├── mode.html.gif
│ │ │ │ ├── numberedlist.gif
│ │ │ │ ├── outdent.gif
│ │ │ │ ├── paste.gif
│ │ │ │ ├── print.gif
│ │ │ │ ├── redo.gif
│ │ │ │ ├── removeformat.gif
│ │ │ │ ├── save.gif
│ │ │ │ ├── separator.gif
│ │ │ │ ├── spellcheck.gif
│ │ │ │ ├── strikethrough.gif
│ │ │ │ ├── subscript.gif
│ │ │ │ ├── superscript.gif
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── toolbar.background.gif
│ │ │ │ ├── toolbarbutton.down.gif
│ │ │ │ ├── toolbarbutton.over.gif
│ │ │ │ ├── toolbar.end.gif
│ │ │ │ ├── toolbar.start.gif
│ │ │ │ ├── underline.gif
│ │ │ │ ├── undo.gif
│ │ │ │ ├── unlink.gif
│ │ │ │ ├── wordclean.gif
│ │ │ │ └── wordcount.gif
│ │ │ └── officeXP
│ │ │ ├── bgcolor.gif
│ │ │ ├── bold.gif
│ │ │ ├── bold.over.gif
│ │ │ ├── borders.gif
│ │ │ ├── bullets.gif
│ │ │ ├── bullets.over.gif
│ │ │ ├── changecase.gif
│ │ │ ├── changecase.over.gif
│ │ │ ├── copy.gif
│ │ │ ├── copy.over.gif
│ │ │ ├── createlink.gif
│ │ │ ├── createlink.over.gif
│ │ │ ├── cut.gif
│ │ │ ├── cut.over.gif
│ │ │ ├── delete.gif
│ │ │ ├── delete.over.gif
│ │ │ ├── deletetablecolumn.gif
│ │ │ ├── deletetablecolumn.over.gif
│ │ │ ├── deletetablerow.gif
│ │ │ ├── deletetablerow.over.gif
│ │ │ ├── details.gif
│ │ │ ├── find.gif
│ │ │ ├── find.over.gif
│ │ │ ├── fontbackcolorpicker.gif
│ │ │ ├── fontbackcolorpicker.over.gif
│ │ │ ├── fontforecolorpicker.gif
│ │ │ ├── fontforecolorpicker.over.gif
│ │ │ ├── help.gif
│ │ │ ├── help.over.gif
│ │ │ ├── indent.gif
│ │ │ ├── indent.over.gif
│ │ │ ├── insertdate.gif
│ │ │ ├── insertdate.over.gif
│ │ │ ├── insertemail.gif
│ │ │ ├── insertemail.over.gif
│ │ │ ├── insertimagefromgallery.gif
│ │ │ ├── insertimagefromgallery.over.gif
│ │ │ ├── insertimage.gif
│ │ │ ├── insertimage.over.gif
│ │ │ ├── insertrule.gif
│ │ │ ├── insertrule.over.gif
│ │ │ ├── inserttablecolumn.gif
│ │ │ ├── inserttablecolumn.over.gif
│ │ │ ├── inserttable.gif
│ │ │ ├── inserttable.over.gif
│ │ │ ├── inserttablerow.gif
│ │ │ ├── inserttablerow.over.gif
│ │ │ ├── inserttime.gif
│ │ │ ├── inserttime.over.gif
│ │ │ ├── italic.gif
│ │ │ ├── italic.over.gif
│ │ │ ├── justifycenter.gif
│ │ │ ├── justifycenter.over.gif
│ │ │ ├── justifyfull.gif
│ │ │ ├── justifyfull.over.gif
│ │ │ ├── justifyleft.gif
│ │ │ ├── justifyleft.over.gif
│ │ │ ├── justifyright.gif
│ │ │ ├── justifyright.over.gif
│ │ │ ├── mode.design.gif
│ │ │ ├── mode.html.gif
│ │ │ ├── numberedlist.gif
│ │ │ ├── numberedlist.over.gif
│ │ │ ├── outdent.gif
│ │ │ ├── outdent.over.gif
│ │ │ ├── paste.gif
│ │ │ ├── paste.over.gif
│ │ │ ├── print.gif
│ │ │ ├── print.over.gif
│ │ │ ├── redo.gif
│ │ │ ├── redo.over.gif
│ │ │ ├── removeformat.gif
│ │ │ ├── removeformat.over.gif
│ │ │ ├── save.gif
│ │ │ ├── save.over.gif
│ │ │ ├── separator.gif
│ │ │ ├── spellcheck.gif
│ │ │ ├── spellcheck.over.gif
│ │ │ ├── strikethrough.gif
│ │ │ ├── strikethrough.over.gif
│ │ │ ├── subscript.gif
│ │ │ ├── subscript.over.gif
│ │ │ ├── superscript.gif
│ │ │ ├── superscript.over.gif
│ │ │ ├── Thumbs.db
│ │ │ ├── toggleborders.gif
│ │ │ ├── toggledetails.gif
│ │ │ ├── toggledetails.over.gif
│ │ │ ├── toolbar.end.gif
│ │ │ ├── toolbar.start.gif
│ │ │ ├── underline.gif
│ │ │ ├── underline.over.gif
│ │ │ ├── undo.gif
│ │ │ ├── undo.over.gif
│ │ │ ├── unlink.gif
│ │ │ ├── unlink.over.gif
│ │ │ ├── verse.gif
│ │ │ ├── verse.over.gif
│ │ │ ├── wordclean.gif
│ │ │ ├── wordclean.over.gif
│ │ │ ├── wordcount.gif
│ │ │ └── wordcount.over.gif
│ │ ├── Thumbs.db
│ │ └── 数据库总控组态软件.jpg
│ ├── JsLib.js
│ ├── LoginSystem.aspx
│ ├── LoginSystem.aspx.cs
│ ├── Register
│ │ ├── Register.aspx
│ │ └── Register.aspx.cs
│ ├── StyleSheet.css
│ ├── Template
│ │ ├── AdminDefault.aspx
│ │ ├── AdminDefault.aspx.cs
│ │ ├── PageTemplate.aspx
│ │ └── PageTemplate.aspx.cs
│ ├── Tester
│ │ ├── AlertAndClosePage.aspx
│ │ ├── AlertAndClosePage.aspx.cs
│ │ ├── AswerDetail.aspx
│ │ ├── AswerDetail.aspx.cs
│ │ ├── ConfirmBeforeTest.aspx
│ │ ├── ConfirmBeforeTest.aspx.cs
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── DoTest2.aspx
│ │ ├── DoTest2.aspx.cs
│ │ ├── DoTest.aspx
│ │ ├── DoTest.aspx.cs
│ │ ├── FirstPage.aspx
│ │ ├── FirstPage.aspx.cs
│ │ ├── logout.aspx
│ │ ├── logout.aspx.cs
│ │ ├── ModPwd.aspx
│ │ ├── ModPwd.aspx.cs
│ │ ├── msg.aspx
│ │ ├── msg.aspx.cs
│ │ ├── TestContent.aspx
│ │ ├── TestContent.aspx.cs
│ │ ├── TestList.aspx
│ │ ├── TestList.aspx.cs
│ │ ├── TestMarkedList.aspx
│ │ ├── TestMarkedList.aspx.cs
│ │ ├── TestRecorderList.aspx
│ │ ├── TestRecorderList.aspx.cs
│ │ └── Web.config
│ ├── Web.config
│ └── 复件 StyleSheet.css
└── 源码必读.txt
67 directories, 620 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论