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

正文內(nèi)容

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

2024-08-28 18:20本頁(yè)面

【導(dǎo)讀】南昌大學(xué)共青學(xué)院畢業(yè)設(shè)計(jì)(論文)摘要。通過(guò)利用網(wǎng)絡(luò)和數(shù)據(jù)庫(kù)技術(shù),采用基于C/S模式研究開(kāi)發(fā)了試題庫(kù)與在線考。試系統(tǒng),它運(yùn)用方便、操作簡(jiǎn)單,效率很高,現(xiàn)階段雖只實(shí)現(xiàn)了試卷的客觀題部。分,但已具有試題(卷)添加、修改、刪除和查詢,手工組卷與自動(dòng)組卷,手工。評(píng)分和自動(dòng)評(píng)分以及進(jìn)行在線考試管理等重要功能,也就是說(shuō)實(shí)現(xiàn)了真正的無(wú)紙?;荚?,滿足任何授權(quán)的考生隨時(shí)隨地考試并迅速獲得成績(jī),并給出其詳細(xì)的成???jī)分析與試卷評(píng)估,同時(shí)也大大減輕了教師出題、組卷和閱卷等繁重的工作量。

  

【正文】 v /body /html 附錄 C 判斷題管理模塊的主要源代碼 1. 添加操作的關(guān)鍵代碼 … … !include file= !include file= %if request(ctype)=types then flag=0 for i= 1 to 10 39。if trim(request(tamp。i)) and trim(request(cateamp。i))= then 39。flag=0 39。end if if trim(request(tamp。i)) and trim(request(cateamp。i)) then set rss=(select * from type1 where 題干 =39。amp。trim(request(tamp。i))amp。39。) if not then % script language=javascript alert(已有此試題,請(qǐng)重新錄入! )。 ()。 /script %else sql=insert into type1 ( 題干 , 正確答案 ) values(39。amp。trim(request(tamp。i))amp。39。,39。amp。trim(request(cateamp。i))amp。39。) set rs= (sql) flag=1 end if end if next if flag=1 then % script language=javascript 南昌大學(xué)共青學(xué)院畢業(yè)設(shè)計(jì) (論文 ) 附錄 28 alert(試題錄入成功! )。 var now=new Date()。 (?time=+())。 /script % else% script language=javascript alert(錯(cuò)誤:數(shù)據(jù)不全,或提交為空記錄! )。 ()。 /script % end if end if % html head meta equiv=ContentLanguage content=zh meta name=GENERATOR content=Microsoft FrontPage meta name=ProgId content= meta equiv=ContentType content=text/html。 charset=gb2312 title在線 考試系統(tǒng) /title link rel=stylesheet type=text/css href=../ style type=text/css ! .style1 {color: 000000} /style /head body topmargin=0 leftmargin=0 p p align=center /p p align=center /p p align=center /p p align=centerfont class=test1 style1判斷題管理 /font/p h6 align=center /h6 div align=center center form name=form1 action= input type=hidden name=ctype value=types table border=1 cellpadding=5 cellspacing=2 style=bordercollapse: collapse bordercolor=999999 width=600 tr td align=center colspan=3注:可以一次添加 10道判斷題 /td /tr tr bgcolor=ff0099 td width=50 align=center編號(hào) /td td width=500 align=center題目 /td td width=50 align=center答案 /td /tr %for i=1 to 10 南昌大學(xué)共青學(xué)院畢業(yè)設(shè)計(jì) (論文 ) 附錄 29 j=i if j mod 2 =0 then bg=E9F8F0 else bg=ffffff end if % tr bgcolor=ffe1ff td align=center%=i%/td td input type=text name=T%=i% size=65 class=line/td td align=center select name=cate%=i% size=1 style=backgroundcolor: rgb(224,252,255) option selected value=1對(duì) /option option value=0錯(cuò) /option/select/td /tr %next% /table h6 /h6 p input type=submit value=提交 name=B1 input type=reset value=重置 name=B2 /p /form /center /div /body /html !include file= !include file= %sql=delete from type1 where id=amp。trim(request(id)) set rs=(sql) % script language=javascript alert(試題刪除成功! )。 var now=new Date()。 (?time=+())。 /script 3. 修改操作的關(guān)鍵代碼 !include file= script language=javascript function check() { if (==) 南昌大學(xué)共青學(xué)院畢業(yè)設(shè)計(jì) (論文 ) 附錄 30 {alert(請(qǐng)錄入題干! )。 ()。 return false。} =types。 ()。 } /script %sql=select * from type1 where id=amp。trim(request(id)) set rs= (sql) if request(ctype)=types then sqlfind=select * from type1 where 題干 =39。amp。trim(request(t1))amp。39。 and 正確答案=amp。cbool(request(cate))amp。 and idamp。request(id) set rss=(sqlfind) if not then % script language=javascript alert(已有此試題! )。 ()。 /script %else sqledit=update type1 set 題干 =39。amp。trim(request(t1))amp。39。, 正 確 答 案=amp。cbool(request(cate))amp。 ,加入日期 =39。amp。date()amp。39。 where id=amp。request(id) set rss=(sqledit) % script language=javascript alert(試題修改成功! )。 var now=new Date()。 (?time=+())。 /script %end if end if % html head meta equiv=ContentLanguage content=zh meta name=GENERATOR content=Microsoft FrontPage meta name=ProgId content= meta equiv=ContentType content=text/html。 charset=gb2312 title在線 考試系統(tǒng) /title link rel=stylesheet type=text/css href=../ style type=text/css ! .style1 {color: 000033} /style /head 南昌大學(xué)共青學(xué)院畢業(yè)設(shè)計(jì) (論文 ) 附錄 31 body topmargin=0 leftmargin=0 p p align=center /p p align=center /p p align=center /p p align=centerfont class=test1 style1管理判斷題 /font/p h6 align=center /h6 div align=center center form name=form1 action= input type=hidden name=ctype input type=hidden name=id value=%=trim(request(id))% table border=1 cellpadding=5 cellspacing=0 style=bordercollapse: collapse bordercolor=111111 width=600 tr td align=center colspan=3修改判斷題 /td /tr tr bgcolor=ff0099 td width=50 align=center編號(hào) /td td width=500 align=center題目 /td td width=50 align=center答案 /td /tr tr bgcolor=ffe1ff td align=center%=rs(id)%/td td input type=text name=t1 size=70 class=line value=%=rs(題干)%/td td align=center select name=cate size=1 style=backgroundcolor: rgb(224,252,255) option selected value=1 % if rs( 正 確 答 案 )=true then selected%對(duì) /option option value=0 % if rs(正確答案 )=false then selected%錯(cuò) /option/select/td /tr /table p /p h5 input type=button value=提交 name=B1 onClick=check() input type=reset value=重置 name=B2 /h5 /form /center/div/body/html
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評(píng)公示相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1