• 大小: 1.87M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 系统  在线  答题  

资源简介

基于asp.net sql server开发的在线答题系统

本人学习时开发的一个简单的在线答题系统,采用Asp.Net开发,现在个大家分享交流希望给些宝贵意见!
开发工具:vs2005 或更高版本
数据库:SqlSevrer2005 或者更高版本
测试帐号:
管理员:admin 密码:123
学生: huangyang 密码:123 

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using Entity;
using DAL;

namespace BLL
{
    public class ChoiceQuestionBLL
    {
        ChoiceQuestionDAL cqd = null;
        public ChoiceQuestionBLL()
        {
            cqd = new ChoiceQuestionDAL();
        }
        //添加选择题
        public bool AddChoiceQuestion(ChoiceQuestion cq)
        {
            int a = 0;
            a = cqd.AddChoiceQuestion(cq);
            if (a>0)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        //根据作业号查询该套题的所有题
        public List SelAllChoiceQuestionBySid(int sid)
        {
            return cqd.SelAllChoiceQuestionBySid(sid);
        

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-11-22 19:57  BLL\
     文件        2881  2018-11-22 20:01  BLL\BLL.csproj
     文件         832  2009-12-16 14:31  BLL\ChoiceQuestionBLL.cs
     文件         667  2009-12-22 15:46  BLL\ClassBLL.cs
     文件         631  2009-12-25 11:06  BLL\EssayQuestionBLL.cs
     文件         381  2009-12-23 11:45  BLL\MenuBLL.cs
     目录           0  2018-11-22 19:57  BLL\Properties\
     文件        1317  2009-12-15 08:22  BLL\Properties\AssemblyInfo.cs
     文件         363  2009-12-22 15:36  BLL\RoleBLL.cs
     文件        1181  2009-12-21 11:11  BLL\ScoreBLL.cs
     文件        1719  2009-12-23 10:12  BLL\SubjectBLL.cs
     文件         408  2009-12-18 11:29  BLL\UserAnswerBLL.cs
     文件         668  2009-12-22 15:02  BLL\UserBLL.cs
     目录           0  2018-11-22 19:57  BLL\bin\
     目录           0  2018-11-22 20:14  BLL\bin\Debug\
     文件        7680  2018-11-22 20:14  BLL\bin\Debug\BLL.dll
     文件       36352  2018-11-22 20:14  BLL\bin\Debug\BLL.pdb
     文件       15872  2018-11-22 20:14  BLL\bin\Debug\DAL.dll
     文件       44544  2018-11-22 20:14  BLL\bin\Debug\DAL.pdb
     文件       10240  2018-11-22 20:14  BLL\bin\Debug\Entity.dll
     文件       52736  2018-11-22 20:14  BLL\bin\Debug\Entity.pdb
     目录           0  2018-11-22 19:57  BLL\obj\
     文件        1039  2010-01-24 20:36  BLL\obj\BLL.csproj.FileListAbsolute.txt
     目录           0  2018-11-22 20:14  BLL\obj\Debug\
     文件           0  2018-11-22 20:14  BLL\obj\Debug\BLL.csproj.CopyComplete
     文件          42  2018-11-22 20:14  BLL\obj\Debug\BLL.csproj.CoreCompileInputs.cache
     文件        2319  2018-11-22 20:14  BLL\obj\Debug\BLL.csproj.FileListAbsolute.txt
     文件       20104  2018-11-22 20:14  BLL\obj\Debug\BLL.csprojAssemblyReference.cache
     文件        7680  2018-11-22 20:14  BLL\obj\Debug\BLL.dll
     文件       36352  2018-11-22 20:14  BLL\obj\Debug\BLL.pdb
     文件        6502  2018-11-22 20:01  BLL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
............此处省略107个文件信息

评论

共有 条评论