freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

計(jì)算機(jī)-畢業(yè)論文在線考試系統(tǒng)設(shè)計(jì)-資料下載頁

2024-10-07 10:19本頁面

【導(dǎo)讀】試六個(gè)方面論述了在線考試系統(tǒng)的開發(fā)設(shè)計(jì)過程。在線考試系統(tǒng)可實(shí)現(xiàn)無紙化考試,方便學(xué)。生,教師使用,大大擴(kuò)展了考試的靈活性。[2]盧亮,張博文.搜索引擎原理、實(shí)踐與應(yīng)用[M].電子工業(yè)出版社.[3]王世香.精通MATLAB接口與編程[M].電子工業(yè)出版社.程教育,通過計(jì)算機(jī)網(wǎng)絡(luò)實(shí)現(xiàn)異地教育和培訓(xùn)?,F(xiàn)在計(jì)算機(jī)硬件技術(shù)的發(fā)展已經(jīng)達(dá)到了相。但是,遠(yuǎn)程教育軟件的開發(fā)目前還處于起步階段,隨著這項(xiàng)技術(shù)的不斷深入。出了更高的設(shè)計(jì)要求。其中很重要的一個(gè)環(huán)節(jié)就是在線考試系統(tǒng),同時(shí)它也是最難實(shí)現(xiàn)的環(huán)節(jié)。在線考試系統(tǒng)具有降低考試成本,解決繁重的考務(wù)工作,方便教師和學(xué)生使用的優(yōu)點(diǎn)。判卷,可生成學(xué)生答卷。在完成基本功能基礎(chǔ)上,力爭在交互手段方面有所創(chuàng)新,為用戶。提供參加考試的良好體驗(yàn)。

  

【正文】 if ((spp)) { return true。 } else { return false。 } } static SingleSelectedService service = new SingleSelectedService()。 public static ListSingleProblem GetSingleProblemList(string selectvalue) { return (selectvalue)。 } static SingleSelectedService Sing = new SingleSelectedService()。 public static ListSingleProblem GetSingQuestion(string UsersID, int PaperID) { return (UsersID, PaperID)。 } } ( 2)多選題增刪改查功能的實(shí)現(xiàn) 。 public class MultiProblemManager { public static bool multiProblemInsert(MultiProblem mi) { if ((mi)) { return true。 } else { return false。 煙臺(tái)大學(xué)畢業(yè)論文(設(shè)計(jì)) 20 } } public static bool multiProblemUpdate(MultiProblem mu) { if ((mu)) { return true。 } else { return false。 } } static MultiProblemService service = new MultiProblemService()。 public static ListMultiProblem GetMultiProblemList(string selectvalue) { return (selectvalue)。 } static MultiProblemService mul = new MultiProblemService()。 public static ListMultiProblem GetMutiQuestion(string UsersID, int PaperID) { return (UsersID,PaperID)。 } } ( 3)判斷題增刪改查功能的實(shí)現(xiàn) 。 public class JudgeProblemManager { public static bool judgeProblemUpdate(JudgeProblem jp) { if ((jp)) { return true。 } else { return false。 煙臺(tái)大學(xué)畢業(yè)論文(設(shè)計(jì)) 21 } } public static bool judgeProblemInsert(JudgeProblem ji) { if ((ji)) { return true。 } else { return false。 } } static JudgeProblemService service = new JudgeProblemService()。 public static ListJudgeProblem GetJudgeProblemList(string selectvalue) { return (selectvalue)。 } static JudgeProblemService judge= new JudgeProblemService()。 public static ListJudgeProblem GetJudgeQuestion(string UsersID, int PaperID) { return (UsersID, PaperID)。 } } 用戶信息管理 模塊的實(shí)現(xiàn) ( 1)添加用戶功能的實(shí)現(xiàn) 。 /// summary /// 添加 用戶 /// /summary /// param name=user/param /// returns/returns public static bool insertUsers(Users user) { string sql = @insert into Users (UserId,UserName,UserPwd,RoleId) 煙臺(tái)大學(xué)畢業(yè)論文(設(shè)計(jì)) 22 VALUES (@UserId,@UserName,@UserPwd,@RoleId)。 SqlParameter[] para = new SqlParameter[] { new SqlParameter(@UserId,), new SqlParameter(@UserName,), new SqlParameter(@UserPwd,), new SqlParameter(@RoleId,) }。 int i = (sql, para)。 if (i 0) { return true。 } else { return false。 } } ( 2)用戶管理功能的實(shí)現(xiàn) 。 /// summary /// 查詢用戶(登錄) /// /summary /// param name=UserID/param /// param name=pwd/param /// returns/returns public Users LoginUser(string UserID, string pwd) { using (SqlConnection conn = ()) { string sql = @SELECT UserID, UserName,UserPwd,RoleName FROM Users, Role WHERE UserID =39。{0}39。 AND UserPwd =39。{1}39。 AND = 。 煙臺(tái)大學(xué)畢業(yè)論文(設(shè)計(jì)) 23 SqlCommand cmd = ()。 sql = (sql, UserID, pwd)。 = sql。 ()。 SqlDataReader dr = ()。 if (!()) { return null。 } Users u = PopUserFromDataReader(dr)。 ()。 return u。 } } private Users PopUserFromDataReader(IDataReader dr) { Users u = new Users()。 = dr[UserID].ToString()。 = dr[UserName].ToString()。 = dr[UserPwd].ToString()。 Role role = new Role()。 = (dr[RoleId])。 = dr[RoleName].ToString()。 = role。 return u。 煙臺(tái)大學(xué)畢業(yè)論文(設(shè)計(jì)) 24 } /// summary /// 根據(jù)用的賬號修改密碼 /// /summary /// param name=UserPwd/param /// param name=UserId/param public void Update(string UserPwd, string UserId)//根椐用的帳號修改密碼 。 { using (SqlConnection conn = ()) { string sql = update Users set UserPwd=39。{0}39。 where UserID=39。{1}39。 SqlCommand cmd = ()。 sql = (sql, UserPwd, UserId)。 = sql。 ()。 ()。 ()。 } } /// summary /// 根據(jù)用的賬號修改密碼 /// /summary /// param name=UserPwd/param /// param name=UserId/param public static bool Update1(string UserId, string UserPwd) { using (SqlConnection conn = ()) { string sql = update Users set UserPwd=39。{0}39。 where UserID=39。
點(diǎn)擊復(fù)制文檔內(nèi)容
研究報(bào)告相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1