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

正文內(nèi)容

聞發(fā)布管理系統(tǒng)-畢業(yè)論-資料下載頁

2025-06-04 21:50本頁面
  

【正文】 除類別所使用數(shù)據(jù)庫觸發(fā)器: CREATE TRIGGER [dbo].[trigCategoryDelete] ON [dbo].[category] 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 34 instead of DELETE AS BEGIN declare @caId int select @caId=id from deleted delete ment where newsId in (select ID from news where caId=@caId) 刪除評(píng)論 delete news where caId=@caId 刪除新聞 delete category where id=@caId 刪除類別 END 新聞管理模塊 圖 614 新聞管理界面 刪除新聞?wù){(diào)用的數(shù)據(jù)庫中的存儲(chǔ)過程為: CREATE PROCEDURE [dbo].[news_delete] @id int AS BEGIN delete ment where newsId=@id 先刪除該新聞下的評(píng)論 delete news where id=@id 再刪除新聞本身 END GO 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 35 修改新聞的界面,如圖 615所示: 圖 615 修改新聞界面 修改新聞?wù){(diào)用的數(shù)據(jù)庫中的存儲(chǔ)過程為: CREATE PROCEDURE [dbo].[news_update] @id int, @title varchar(100), @content text, @caid int AS BEGIN UPDATE news SET title = @title, [content] = @content, caId = @caid where id=@id END GO 添加新聞的界面,如圖 616所示: 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 36 圖 616 添加新聞界面 添加新聞的核心代碼: public bool Insert(News n) { bool flag = false。 private SQLHelper sqlhelper =new SQLHelper()。 string cmdText = news_insert。 SqlParameter[] paras = new SqlParameter[] { new SqlParameter(@title, ), new SqlParameter(@content, ), new SqlParameter(@caid, ) }。 int res = (cmdText, paras,)。 if (res 0){flag = true。} return flag。 } 用戶管理模塊 用戶管理的界面, 如圖 617所示: 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 37 圖 617 用戶管理界面 評(píng)論管理模塊 刪除評(píng)論的界面,如圖 618所示: 圖 618 刪除評(píng)論界面 刪除評(píng)論的主要代碼為: public bool Delete(string id) { 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 38 bool flag = false。 string sql = delete ment where id=@id。 SqlParameter[] paras = new SqlParameter[] { new SqlParameter(@id,id)}。 int res = (sql, paras, )。 if (res 0){flag = true。} return flag。 } 系統(tǒng)出錯(cuò)界面 新聞發(fā)布管理系統(tǒng)的出錯(cuò)界面,如圖 619所示: 圖 619 出錯(cuò)界面 出錯(cuò)界面是一個(gè)靜態(tài)頁面,當(dāng)瀏覽者發(fā)出的請(qǐng)求出現(xiàn)錯(cuò)誤時(shí),會(huì)彈出出錯(cuò)頁,當(dāng)出錯(cuò)頁面出現(xiàn) 5秒之后會(huì)返回主頁,出錯(cuò)頁面的主要代碼實(shí)現(xiàn)為: var i = 5。//倒數(shù) 5秒后返回首頁 var intervalid。 intervalid = setInterval(fun(), 1000)。//每 1000毫秒觸發(fā)一次函數(shù) function fun() { if (i == 0) { = 。// clearInterval(intervalid)。//當(dāng)網(wǎng)絡(luò)不好時(shí),防止在計(jì)數(shù)器減到 0時(shí)繼續(xù)減少 } (mes).innerHTML = i。//提 示 i秒后返回主頁 i=i1。 } 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 39 7 結(jié)論 在新聞發(fā)布管理系統(tǒng)的設(shè)計(jì)過程中,由于對(duì) ,系統(tǒng)的開發(fā)也屬于邊學(xué)習(xí)邊應(yīng)用的過程,因此對(duì) ,程序中肯定存在許多需要改正的地方。另外,由于畢業(yè)設(shè)計(jì)的時(shí)間比較緊張,而且自己技術(shù)有限, 系統(tǒng)不免有些簡陋 ,這也是今后系統(tǒng)需要改進(jìn)和完善的地方。 在開發(fā)過程中遇到了很多疑問,在查閱了大量的文獻(xiàn)和教學(xué)視頻以及老師同學(xué)的指導(dǎo)之后,終于解決了問題。在學(xué)習(xí)過程中學(xué)到了很多新知識(shí),對(duì) 、 、 HTML、CSS、 Javascript等都有了更深層次的理解,對(duì)三層架構(gòu)模型也更加的熟悉。這次畢業(yè)設(shè)計(jì)使我不但學(xué)習(xí)到了新技術(shù),而且也積累了開發(fā)經(jīng)驗(yàn),從中也得到了許多樂趣。 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 40 參考文獻(xiàn) [1] Eric Server 2021 中文版精粹 .機(jī)械工業(yè)出版社華章公司, 2021 [2] 楊曉光 .Visual C. 程序設(shè)計(jì)(修訂本) [M].清華大學(xué)出版社 , 2021 [3] 薩師煊 , 王珊 .數(shù)據(jù)庫系統(tǒng)概論 .北京: 高 等教育 出版社, 2021 [4] 劉志成 .Windows 程序設(shè)計(jì)( C)實(shí)例教程 [M].清華大學(xué)出版社 , 2021 [5] 張德靜 .深入淺出 ASP程序設(shè)計(jì)與開發(fā) .中國青年出版社 , 2021年 5月 [6] 宋昆,李嚴(yán) .SQL Server 數(shù)據(jù)庫開發(fā)實(shí)例解析 [M].北京:機(jī)械工業(yè)出版社, 2021 [7] 張海藩 .軟件工程導(dǎo)論 .北京:清華大學(xué)出版社, 2021 [8] 汪小平,吳永強(qiáng). 網(wǎng)絡(luò)開發(fā)技術(shù) .北京:北京郵電出版社, 2021 [9] 百度百科 . B/S 結(jié)構(gòu) . [10] 劉曉華 .SQL Server 2021 數(shù)據(jù)庫應(yīng)用開發(fā) .北京:電子工業(yè)出版社, 2021 [11] 張林 .軟件工程 .北京:中國鐵道出版社, 2021 [12] 姜力 , 高群 .SQL Server 數(shù)據(jù)庫設(shè)計(jì)與管理 .中國林業(yè)出版社 , 2021 [13] 張蓓 . 通用模塊及典型系統(tǒng)開發(fā)實(shí)例導(dǎo)航 .北京:人民郵電出版社, 2021 [14] (美) Fritz Onion 著,施諾譯 . 基礎(chǔ)教程 C案例版 .北京:清華大學(xué)出版社, 2021 [15] Jesse Liberty, Dan 3rd York: O39。Reilly 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 41 致 謝 光陰如梭,畢業(yè)在即。本次系統(tǒng)的設(shè)計(jì)過程中,有許多人給了我很大的幫助,沒有他們的支持,畢業(yè)設(shè)計(jì)也不會(huì)進(jìn)行得這么順利。在此,要衷心感謝給予我?guī)椭睦蠋熀屯瑢W(xué)們。 首先要衷心感謝我的指導(dǎo)老師張瑜老師,感謝張老師對(duì)我精心指導(dǎo),在寒假的時(shí)候張老師就提前給了我們學(xué)習(xí) 的電子書 和論文相關(guān)的資料, 從論文的選題、開題報(bào)告、系統(tǒng)的設(shè)計(jì)到論文的撰寫,都傾注了大量的心血和提出了寶貴的意見,幫我調(diào)整思路和方向, 督促畢業(yè)設(shè)計(jì)的進(jìn)度, 使我能夠順利完成本次畢業(yè)設(shè)計(jì)。再次向張老師表達(dá)我衷心的感謝! 同時(shí),感謝這四年來教過我的老師和我的導(dǎo)員們,他們不僅教授了我知識(shí),也在我這四年的成長中給了我許多寶貴的意見和鼓勵(lì)。也非常感謝我的同學(xué)和舍友們,在學(xué)習(xí)的過程中他們不厭其煩的幫我解答編寫代碼中遇到的難題,鼓勵(lì)我繼續(xù)努力。有了他們的支持,我才順利的完成了畢業(yè)設(shè)計(jì)! 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 42 附 錄 外文資料: Overview Russ Basiura, Mike Batongbacal is a unified Web development model that includes the services necessary for you to build enterpriseclass Web applications with a minimum of coding. is part of the .NET Framework, and when coding applications you have access to classes in the .NET Framework. You can code your applications in any language patible with the mon language runtime (CLR), including Microsoft Visual Basic, C,JScript .NET, and J. These languages enable you to develop applications that benefit from the mon language runtime, type safety, inheritance,and so on. includes: ? A page and controls framework ? The piler ? Security infrastructure ? Statemanagement facilities ? Application configuration ? Health monitoring and performance features ? Debugging support ? An XML Web services framework ? Extensible hosting environment and application life cycle management ? An extensible designer environment The page and controls framework is a programming framework that runs on a Web server to dynamically produce and render Web pages. Web pages can be requested from any browser or client device, and renders mark up (such as HTML) to the requesting browser. As a rule, you can use the same page for multiple browsers, because renders the appropriate mark up for the browser making the , you can design your Web page to target a specific browser,such as Microsoft Inter Explorer 6, and take advantage of the features of that browser. supports mobile controls for Webenabled devices such as cellular phones, handheld puters, and personal digital assistants (PDAs). Web pages are pletely objectoriented. Within Web pages you can work with HTML elements using properties, methods, and events. The page framework removes the implementation details of the separation of client and server inherent in 河北大學(xué) 2021屆本科生畢業(yè)論文(設(shè)計(jì)) 43 Webbased applications by presenting a unified model for responding to client events in code that runs at the server. The framework also automatically maintains the state of
點(diǎn)擊復(fù)制文檔內(nèi)容
畢業(yè)設(shè)計(jì)相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1