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

正文內(nèi)容

基于net的城市公交查詢系統(tǒng)的設(shè)計與實現(xiàn)—免費畢業(yè)設(shè)計論文-閱讀頁

2024-12-19 10:22本頁面
  

【正文】 tion (source)。 存儲過程 在城市公交查詢中,大多的數(shù)據(jù)操 作都是通過存儲過程來處理的。它的參數(shù)可以被傳遞和返回。在應(yīng)用程序中直接調(diào)用存儲過程有以下好處:減少網(wǎng)絡(luò)通信量 、提高系統(tǒng)的運行速度、 更強的適應(yīng)性 。 此界面主要是采用表格來制作的,它包括五個部分。 主要由頁面的標題,四個工具欄和一個 label控件組成; ; 是快速公告,主要顯示公交車公司發(fā)布的關(guān)于交通和公交車的最新信息; 主要是顯示此網(wǎng)頁的版權(quán)所有者。 圖 51 首頁界面 前臺界面實現(xiàn) ( ) ( 1)下面的代碼定義調(diào)用的文件和 Form 表單。 ………………… //using 表示為本機的數(shù)據(jù)提供類 using 。// 在 的避免了重復(fù)直接調(diào)用數(shù)據(jù)庫連接 namespace ni //命名空間 { Public class _default: {//相關(guān)控件的聲明 …………… .. Protected Sina。 Protected string searchlina=?。 ( 2)下面代碼定義了頁面初始化過程中的數(shù)據(jù)應(yīng)用,首先建立了與數(shù)據(jù)庫的連接 //Page_Load 事件,無論是訪問者初始瀏覽還是通過單擊按鈕或因為其他事件來再次調(diào)用頁面,都會觸發(fā) Page_Load 事件中的代碼。 //調(diào)用在 文件中的數(shù)據(jù)庫連接語句 conn=new SqlConnection(source)。 ……………………… . this. Load += new ()。 Private void Button2_Click (object sender, e) { //此事件中將頁面跳轉(zhuǎn)到 站點 查詢的界面中 string sna=。//帶參數(shù)的頁面跳轉(zhuǎn) url1+=。 } ………………… .. 后臺管理界面 在此頁面中,主要實現(xiàn)站點信息管理。具體結(jié)構(gòu)排列如圖 52 所示。它的屬性是 true 和 false。在此頁面中用來共用了三種選擇,包括 ButtonColum、 BoundColumn和 EditCommanDcolumn,其代碼如下: ……………………… asp:datagridid=datagrid1runat=serverDataKeyField=siliid OnUpdateCommand=DataGrid_updateOnEditCommand=DataGrid_edit OnDeleteCommand=DataGrid_deleteOnCancelCommand=DataGrid_cancel Width=100% AutoGenerateColumns=False PageSize=10 AllowPaging=True OnPageIndexChanged=DataGrid_PageBorderColor=999999 BorderStyle=None BorderWidth=1px BackColor=White CellPadding=3 GridLines=Vertical SelectedItemStyleFontBold=TrueForeColor=WhiteBackColor=ccccff /SelectedItemStyle AlternatingItemStyle BackColor=ffe4ff/AlternatingItemStyle // AlternatingItemStyle 為表中偶數(shù)記錄單獨指定的顏色和字體 ItemStyle ForeColor=Black BackColor=f1f0f4 /ItemStyle HeaderStyle FontBold=True ForeColor=Black BackColor=ffe4ff /HeaderStyle FooterStyle ForeColor=Black BackColor=ffccff/FooterStyle Columns asp:BoundColumn DataField=siliid HeaderText=序 號 /asp: BoundColumn asp:BoundColumn DataField=sitename HeaderText=站點名 /asp: BoundColumn //通過 datagrid 控件的 BoundColumn 性質(zhì),可以對數(shù)據(jù)表的列進行操作 asp:BoundColumn DataField=liname HeaderText=線路名 /asp: BoundColumn asp:BoundColumn DataField=number HeaderText=車序 /asp: BoundColumn asp:EditCommandColumn ButtonType=LinkButton UpdateText= 更新 CancelText=取消 EditText=編輯 /asp:EditCommandColumn //EditCommandColumn 的具體功能有編輯、更新和取消,它可以實現(xiàn)數(shù)據(jù)的修改 asp:ButtonColumn Text=刪 除 CommandName=Delete /asp: ButtonColumn //通過 datagrid 控件的 ButtonColumn 性質(zhì),可以在數(shù)據(jù)表中實現(xiàn) Button 控件所支持的操作 /Columns PagerStyleHorizontalAlign=CenterForeColor=Black BackColor=ffe4ff Mode=NumericPages /PagerStyle//定義分頁時顯示的類型,其中顯示分頁的模型為數(shù)字,方向是水平方向居中。 Conn=new SqlConnection (source)。 } ( 2)下面定義了 bindgrid 和 “ 返回 ” 和 “ 搜索 ” 按鈕的應(yīng)用 ,其代碼如下: Private void Btn_back_Click (object sender, e) {//單擊此按鈕回到管理員頁面 ()。 //用于填充 和更新 SQL Server 數(shù)據(jù)庫中的一組數(shù)據(jù)命令和一個數(shù)據(jù)庫連接 SqlDataAdapter da=new SqlDataAdapter (mysql, conn)。//表示數(shù)據(jù)在內(nèi)存中的緩存 (ds)。 ()。 Conn=new SqlConnection (source)。 string sql=select * from sili where sitename like 39。//實現(xiàn)模糊查詢 SqlDataAdapter da=new SqlDataAdapter (sql, conn)。 } ( 3)下面定義了管理員對 站點次序 信息修改的應(yīng)用,其代碼如下: Public void DataGrid_Page (object Sender, DataGridPageChangedEventArgs e) {//頁面 分頁時控制分頁數(shù)據(jù)顯示 //獲取或設(shè)置當前顯示頁的索引 =。 } Public voidDataGrid_cancel (Objectsender, DataGridCommandEventArgs e) {//獲取或設(shè)置 datagrid 控件中要編輯項的索引 =1。 } //實現(xiàn)編輯按鈕功能 Public void DataGrid_edit (Object sender, DataGridCommandEventArgs e) { = (int) 。 } //更新數(shù)據(jù)庫 Public void DataGrid_update (Object sender, DataGridCommandEventArgs e) {//調(diào)用存儲過程 updatesili SqlCommand cm=new SqlCommand (updatesili, conn)。 (new SqlParameter (siliid, , 4))。 ……………………… //更新數(shù)據(jù)時以文本框形式出現(xiàn) string colvalue= ((TextBox) [1].Controls [0]).Text。 ……………………… [siliid].Value= [(int) ]。 Try //try 塊中通常放執(zhí)行代碼,一個 try 塊后跟零活多個 catch 塊 { ()。 =1。 [color] =red。 BindGrid ()。 =。 [siliid].Value= [(int) ]。 …………………… 6 系統(tǒng)測試 本系統(tǒng)采取的測試方法是先進行各模塊測試,經(jīng)過修改和調(diào)整通過以后,進行總體測試,測試結(jié)果各項功能均已經(jīng)或基本達到設(shè)計要求。測試的主要模塊包括:用戶查詢模塊、系統(tǒng)管理模塊和留言簿模塊,其測試結(jié)果如下: 測試 用戶查詢模塊 車次查詢 用戶在進入系統(tǒng)后就可以進行車次查詢,得出它所經(jīng)過的站點等信息,此功能運行正常。在高級搜索里,可以對站點進行模糊查詢,此功能運行正常。在此系統(tǒng)中,可以實現(xiàn)兩次轉(zhuǎn)站查詢,此功能運行正常。 測試系統(tǒng)管理模塊 管理員登錄 管理員通過 他自己的名字和密碼進入管理后臺,此功能運行正常。在后臺頁面 中還存在一個搜索引擎,可以搜索要進行相關(guān)操作的數(shù)據(jù),此功能運行正常。 結(jié) 論 本設(shè)計是基于 .NET 開發(fā)的一個城市公交查詢系統(tǒng),主要實現(xiàn)了對車次、站點、站站、車站的查詢;在系統(tǒng)管理中,實現(xiàn)了對車次、站點基本信息、站點次序信息和留言簿信息的管理。 在設(shè)計的過程中,重新掌握了一門新的編程語言,也掌握了一部分關(guān)于 2020 編程工具的簡單操作;同時也加深了對 SQL 數(shù)據(jù)庫和 IIS 的了解。當然在本次設(shè)計制作的過程中,也遇到了許多大大小小的問題,同時在此系統(tǒng)的設(shè)計中還存在許多不足的地方,因此在以后的學(xué)習(xí)中還有待改善和加強。 [2] 姚治安 ,周志宏 ,楊柳等著 . [M].北京 :中國水利水電出版社 ,2020。 [4] (美 )G..Andrew Duthie著 . [M]. 北京 :清華大學(xué)出版社 ,2020。 [6] 陳明著 .實用軟件工程基礎(chǔ) [M]. 北京 :清華大學(xué)出版社 ,2020。 [8] 方睿 ,刁仁宏 ,吳四九著 .網(wǎng)絡(luò)數(shù)據(jù)庫原理及應(yīng)用 [M].四川 :四川大學(xué)出版社 ,2020。在此向他表示我最衷心的感謝! 最后向在百忙之中評審本文的各位專家、老師表示衷心 的感謝! 作者簡介: 姓 名:霍 莎 性別: 女 出生年月: 19841110 民族: 漢 Email: 聲 明 本論文的工作是從 2020 年 3 月至 2020 年 6 月,由成都信息工程學(xué)院網(wǎng)絡(luò)工程系完成的。除非另有說明,本文的工作是原始性工作。 ( 2)學(xué)??梢圆捎糜坝 ⒖s印或其他復(fù)制方式保存學(xué)位論文。 ( 4)學(xué)校可允許學(xué)位論文被查閱或借閱。 除非另有科研合同和其他法律文書的制約,本 論文的科研成果屬于成都信息工程學(xué)院。 and the herald shall proclaim in the agora theoffence for which he is going to be beaten. The warden of the agoraand the guardians of the law shall obtain information from experiencedpersons about the rogueries and adulterations of the sellers, andshall write up what the seller ought and ought not to do in each case。 for is not he a benefactor who reduces the inequalitiesand inmensurabilities of goods to equality and mon measure?And this is what the power of money acplishes, and the merchant maybe said to be appointed for this purpose. The hireling and thetavernkeeper, and many other occupations, some of them more andothers less seemly alike have this object。 wherefore all that relates to retail trade, andmerchandise, and the keeping of taverns, is denounced and numberedamong dishonourable
點擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1