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

正文內(nèi)容

java語(yǔ)言圖書館管理系統(tǒng)畢業(yè)論文-資料下載頁(yè)

2025-06-28 08:55本頁(yè)面
  

【正文】 e,password 賦值到 tpasswordString tusername=(username)。String tpassword=(password)。//搜索數(shù)據(jù)庫(kù)中 tusername 和其對(duì)應(yīng)的 tpassword 字段。String sql=select * from admin where username=39。+tusername+39。 and password=39。+tpassword+39。int temp=2。temp=(sql)。if(temp0){//表明驗(yàn)證成功,進(jìn)入 ,并將用戶定格為登錄用戶。(name,tusername)。()。}else{//驗(yàn)證失敗,返回錯(cuò)誤提示信息,并返回 頁(yè)面。(error,請(qǐng)檢查你的用戶名和密碼!)。(../)。}} %代碼部分%@ page contentType=text/html。 charset=gb2312 language=java import=.* errorPage= %29!DOCTYPE HTML PUBLIC //W3C//DTD HTML Transitional//EN htmlscript language=javascript!function SetFocus(){if (==)()。else()。}function CheckForm(){if(==){alert(請(qǐng)輸入用戶名!)。()。return false。}if( == ){alert(請(qǐng)輸入密碼!)。()。return false。}}///scriptheadmeta equiv=ContentType content=text/html。 charset=gb2312title管理員登錄 /titlestyle type=text/css!body {backgroundcolor: 99CCCC。}body,td,th {fontsize: 14px。color: 000000。}a:link {color: 333333。}30a:visited {color: 996600。}a:active {color: 999900。}/style/headbodyform name=Login method=post action= table width=100% border=0 tr td width=25% height=295 /td td width=14% /td td width=36%img src=../images/ width=345 height=117 table width=100% border=0 cellpadding=0 cellspacing=8 tr align=center td height=34 colspan=2span class=style1font size=3strong圖書管理系統(tǒng)后臺(tái)管理員登錄/strong/font/span/td /tr tr td align=right用戶名稱:/td tdinput name=username type=text id=username maxlength=20 style=width:160px。borderstyle:solid。borderwidth:1。paddingleft:4。paddingright:4。paddingtop:1。paddingbottom:1 onmouseover==39。D6DFF739。 onmouseout==39。FFFFFF39。 onFocus=()。 /td /tr tr td align=right用戶密碼:/td tdinput name=password type=password id=password style=width:160px。borderstyle:solid。borderwidth:1。paddingleft:4。paddingright:4。paddingtop:1。paddingbottom:1 onFocus=()。 onmouseover==39。D6DFF739。 onmouseout==39。FFFFFF39。 maxlength=20/td /tr tr align=center td colspan=2 input name=Submit type=submit value= 確 認(rèn) onClick=CheckForm() input name=reset type=reset id=reset value= 清 除 br br 若忘記用戶名或密碼,請(qǐng)與管理人員聯(lián)系br31 strong /strong /td /tr /table /td td width=25% align=right valign=topa href=../返回首頁(yè)/a/td /tr /table/formscript language=JavaScript type=text/JavaScriptSetFocus()。/script/body/html%@ page contentType=text/html。 charset=gb2312 language=java import=.* errorPage= %%@ include file=../%%@ include file=%jsp:useBean id=logincheck class= scope=request /% String username=(username)。String password=(password)。if(username==null||()||password==null||()){%%}else{String tusername=(username)。String tpassword=(password)。String sql=select * from admin where username=39。+tusername+39。 and password=39。+tpassword+39。int temp=2。temp=(sql)。if(temp0){(name,tusername)。()。}else{(error,請(qǐng)檢查你的用戶名和密碼!)。(../)。}} %!DOCTYPE HTML PUBLIC //W3C//DTD HTML Transitional//EN htmlheadmeta equiv=ContentType content=text/html。 charset=gb231232title檢查管理員登錄 /title/headbody檢查管理員登錄/body/html第四節(jié) 圖書查詢功能模塊在前臺(tái)允許所有用戶對(duì)圖書館里面的書籍進(jìn)行查詢,返回內(nèi)容包含書名,編號(hào),分類和庫(kù)存幾個(gè)方面??偟膩碚f該功能是本系統(tǒng)最重要的核心功能之一。前臺(tái)圖書查詢圖 9Web 圖書查詢界面圖 10 查詢結(jié)果界面圖 9 為前臺(tái)查詢界面,圖 10 為顯示界面主要是實(shí)現(xiàn)對(duì)圖書的查詢,內(nèi)容包括書名,圖書編號(hào),分類,庫(kù)存量。分別由 和實(shí)現(xiàn)其主要代碼在功能代碼在 下,查詢功能代碼:%String sql=。//解決中文亂碼String keyword=(keyword)。String tkeyword=(keyword)。33//獲取參數(shù)名稱String keytype=(type)。//如果按書名進(jìn)行查詢if((booktitle)){sql=select * from book where title like 39。%+tkeyword+%39。}//如果按書號(hào)進(jìn)行查詢else if((bookid)){sql=select * from book where bookID like 39。%+tkeyword+%39。}int temp=(sql)。Connection conn=()。Statement stmt=()。ResultSet rs=(sql)。//表單顯示處理功能代碼:while(()){String booktitle=(2)。String bookid=(3)。String booktype=(4)。int quantity=(5)。id++。if(color==CCCCCC){color=999999。}else{color=CCCCCC。}%代碼部分 %@ page contentType=text/html。 charset=gb2312 language=java import=.* errorPage= %%@ include file=../ %%@ include file=%!DOCTYPE HTML PUBLIC //W3C//DTD HTML Transitional//EN htmlheadmeta equiv=ContentType content=text/html。 charset=gb2312title查詢圖書信息 /titlestyle type=text/css!.tip {fontsize: 11px}34body {backgroundimage: url(../images/)。}/style/headbody table width=72% border=0 cellspacing=0 cellpadding=0 align=center trtd width=120 height=30 bgcolor=EFEFEFimg src=../images/ width=120 height=26/td td width=455 bgcolor=EFEFEFtable width=100% border=0 cellspacing=0 cellpadding=0 tr form name=form1 action= method=get td width=80% height=25 nowrap bgcolor=EFEFEF input name=keyword size=30 value=39。關(guān)鍵字 39。 onFocus=39。()。39。 select name=type option value=booktitle圖書標(biāo)題/option option value=bookid圖書編號(hào)/option /select input name=Submit src=../images/ type=image width=65 height=20 align=absmiddle border=0/td td width=20% nowrap bgcolor=EFEFEF/td /form /tr/table/td/tr/table div align=right class=tip div align=centerTIP:關(guān)鍵字為空,則返回所有圖書信息 /div /div/body/html%@ page contentType=text/html。 charset=gb2312 language=java import=.* errorPage= %%@ include file=../ %%@ include file=%jsp:useBean id=search class= scope=request /%String sql=。String keyword=(keyword)。String tkeyword=(keywo
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評(píng)公示相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1