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

正文內容

在線訂票系統(tǒng)的設計與實現(xiàn)—計算機畢業(yè)設計-資料下載頁

2024-11-24 03:48本頁面

【導讀】本文主要闡述軟件工程課程設計管理系統(tǒng)案例庫中案例的建設過程。所選項目“機票預。訂系統(tǒng)”和“教務管理系統(tǒng)之子系統(tǒng)——系內課程安排”都具有典型的信息管理系統(tǒng)的特征。計,文件和數(shù)據(jù)庫設計,系統(tǒng)編碼實現(xiàn),測試。本系統(tǒng)采用了Asp,Access等技術?!祪日n程安排”進行了初步的分析。

  

【正文】 tType content=text/html。 charset=gb2312 /head body center table border=1 width=762 id=table1 cellspacing=1 style=bordercollapse: collapse bordercolor=000000 height=513 tr td width=531 height=88 align=center bgcolor=00FFFFa href=查看航線 /a a href=乘客訂票 /a a href=乘客注冊 /a/td td width=221 height=88 bgcolor=FF00FF /td /tr 畢業(yè)論文 21 tr td width=531 valign=top bordercolor=000000 bgcolor=FFFFFF table border=1 width=100% cellspacing=1 style=bordercollapse: collapse bordercolor=0000FF id=table2 tr td起點 /td td終點 /td td價格 /td /tr % if and then % tr td colspan=3目前沒有航線信息! /td /tr % else do % tr td%=rds(BeginPlace)%/td td%=rds(EndPlace)%/td td¥ %=rds(Price)%/td /tr % loop until end if set rds=nothing set conn=nothing % /table /td td width=221 valign=top bgcolor=FFFF00 br % if Session(Name) then 歡迎 :amp。 Session(Name) a href=退出 /a 畢業(yè)論文 22 else % form method=POST action= p align=center乘客登錄 br 登錄號: input type=text name=UID size=20br 密 碼: input type=password name=UPas size=20br input type=submit value=提交 name=B1input type=reset value=重置 name=B2/p /form br form method=POST action= p align=center管理員登錄 br 登錄號: input type=text name=AID size=20br 密 碼: input type=password name=APas size=20br input type=submit value=提交 name=B3input type=reset value= 重置 name=B4/p /form % end if % p /td /tr /table /body /center /html 查看航線: 圖 查看航線 其實現(xiàn)代碼為: % @Language=VBScript CodePage=936% !include File= % dim rds 畢業(yè)論文 23 set rds=(Select * From HangXian) % html head meta equiv=ContentLanguage content=zh meta equiv=ContentType content=text/html。 charset=gb2312 title航線信息 /title /head body center table border=1 width=762 cellspacing=1 style=bordercollapse: collapse bordercolor=000000 tr td align=centerfont size=5航線信息 /font/td /tr tr td table border=1 width=100% cellspacing=1 style=bordercollapse: collapse bordercolor=0000FF tr td起點 :/td td終點 :/td td剩余座位 /td td票價 /td /tr % if and then % tr td colspan=4目前沒有航線信息 !/td /tr % else do % tr td%=rds(BeginPlace)%/td td%=rds(EndPlace)%/td 畢業(yè)論文 24 td%=rds(SYZuoWei)%/td td¥ %=rds(Price)%/td /tr % loop until end if set rds=nothing set conn=nothing % /table /td /tr tr td /td /tr /table /center /body /html 乘客訂票: 訂票的時候,要先查看航線信息并點選航線。 圖 航線信息 其實現(xiàn)代碼為: % @Language=VBScript CodePage=936% !include File= % if Session(UID)= then 請先 登錄 ! end if dim rds set rds=(Select * From HangXian) % 畢業(yè)論文 25 html head meta equiv=ContentLanguage content=zh meta equiv=ContentType content=text/html。 charset=gb2312 title選擇航線 /title /head body center table border=1 width=762 cellspacing=1 style=bordercollapse: collapse bordercolor=000000 tr td align=centerfont size=5航線信息 /font/td /tr tr td form action= method=post table border=1 width=100% cellspacing=1 style=bordercollapse: collapse bordercolor=0000FF tr td/td td起點 :/td td終點 :/td td剩余座位 :/td td票價 :/td /tr % if and then % tr td/td td colspan=4目前沒有航線信息 !/td /tr % else do % tr 畢業(yè)論文 26 tdinput type=radio name=Selected value=%=rds(HXID)%/td td%=rds(BeginPlace)%/td td%=rds(EndPlace)%/td td%=rds(SYZuoWei)%/td td¥ %=rds(Price)%/td /tr % loop until end if set rds=nothing set conn=nothing % /tablecenter input type=submit value=選擇航線 input type=reset/center /form /td /tr tr td /td /tr /table /center /body /html 乘客只有查看了航線的信息,知道了航線的價格,時間等信息后,然后再進行訂票: 圖 訂票窗口 其實現(xiàn)代碼為: head meta equiv=ContentLanguage content=zh meta equiv=ContentType content=text/html。 charset=gb2312 title輸入定票數(shù)量 /title 畢業(yè)論文 27 /head body center form action= method=post table border=1 width=762 cellspacing=1 style=bordercollapse: collapse bordercolor=000000 tr td align=right起點 :/td td align=left%=rds(BeginPlace)%/td /tr tr td align=right終點 :/td td align=left%=rds(EndPlace)%/td /tr tr td align=right剩余座位 :/td td align=left%=rds(SYZuoWei)%/td /tr tr td align=right票 價 :/td td align=left¥ %=rds(Price)%/td /tr tr td align=right輸入票數(shù) :/td td align=leftinput type=text name=Num size=8/td /tr /table center input type=hidden name=Selected value=%=request(Selected)% input type=submit value=訂購 input type=reset/center /form /center /body /html 乘客注冊: 畢業(yè)論文 28 圖 2. 22 用戶注冊圖 其實現(xiàn)代碼為: html head meta equiv=ContentLanguage content=zh meta equiv=ContentType content=text/html。 charset=gb2312 title用戶注冊 /title /head script language=vbscript /script body center table border=1 width=762 cellspacing=1 style=bordercollapse: collapse bordercolor=000000 tr td align=centerfont size=5用戶注冊 /font/td /tr tr td form action= method=post id=frm table border=1 width=100% cellspacing=1 style=bordercollapse: collapse bordercolor=0000FF tr td align=right登錄號 :/td td align=leftinput type=text name=UID size=20 id=UID/td /tr tr td align=right登錄密碼 :/td td align=lefti
點擊復制文檔內容
公司管理相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1