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

正文內(nèi)容

基于aspnet的大學生就業(yè)招聘網(wǎng)的設(shè)計與實現(xiàn)畢業(yè)論文-閱讀頁

2025-07-12 17:14本頁面
  

【正文】 完善等。趙東明:基于 的大學生就業(yè)招聘網(wǎng)的設(shè)計與實現(xiàn)26謝辭我所做的畢業(yè)設(shè)計是在老師的指導下進行的。我非常感謝丁瓊老師對我的幫助及教導,同時也感謝實驗室的其它多位老師對我的畢業(yè)設(shè)計提出的寶貴意見,以及感謝學院為我提供良好的畢業(yè)設(shè)計環(huán)境,最后感謝在畢業(yè)設(shè)計中為我提供幫助的眾多朋友和同學。不過人無完人,物無完物,凡事盡力而為,不可強求結(jié)果。我相信,通過日后的學習和努力,我會做出更加優(yōu)秀的作品,這是本次畢業(yè)設(shè)計帶給我的信心。 they can municate, but typically exchange only small chunks of simple information.Stateless execution When a Web server receives a request for a page, it finds the page, processes it, sends it to the browser, and then discards all page information. If the user requests the same page again, the server repeats the entire sequence, reprocessing the page from scratch. Put another way, a server has no memory of pages that it has processed—page are stateless. Therefore, if an application needs to maintain information about a page, its stateless nature can bee a problem.Unknown client capabilities In many cases, Web applications are accessible to many users using different browsers. Browsers have different capabilities, making it difficult to create an application that will run equally well on all of them.Complications with data access Reading from and writing to a data source in traditional 華東交通大學畢業(yè)設(shè)計3Web applications can be plicated and resourceintensive.Complications with scalability In many cases Web applications designed with existing methods fail to meet scalability goals due to the lack of patibility between the various ponents of the application. This is often a mon failure point for applications under a heavy growth cycle.Meeting these challenges for Web applications can require substantial time and effort. Web pages and the page framework address these challenges in the following ways:Intuitive, consistent object model The page framework presents an object model that enables you to think of your forms as a unit, not as separate client and server pieces. In this model, you can program the page in a more intuitive way than in traditional Web applications, including the ability to set properties for page elements and respond to events. In addition, server controls are an abstraction from the physical contents of an HTML page and from the direct interaction between browser and server. In general, you can use server controls the way you might work with controls in a client application and not have to think about how to create the HTML to present and process the controls and their contents.Eventdriven programming model Web pages bring to Web applications the familiar model of writing event handlers for events that occur on either the client or server. The page framework abstracts this model in such a way that the underlying mechanism of capturing an event on the client, transmitting it to the server, and calling the appropriate method is all automatic and invisible to you. The result is a clear, easily written code structure that supports eventdriven development.Intuitive state management The page framework automatically handles the task of maintaining the state of your page and its controls, and it provides you with explicit ways to maintain the state of applicationspecific information. This is acplished without heavy use of server resources and can be implemented with or without sending cookies to the browser.Browserindependent applications The page framework enables you to create all application logic on the server, eliminating the need to explicitly code for differences in browsers. However, it still enables you to take advantage of browserspecific features by writing clientside code to provide improved performance and a richer client experience..NET Framework mon language runtime support The page framework is built on the .NET Framework, so the entire framework is available to any application. Your applications can be written in any language that is patible that is with the runtime. In addition, data access is simplified using the data access infrastructure provided by the .NET Framework, including . .NET Framework scalable server performance The page framework enables you 趙東明:基于 的大學生就業(yè)招聘網(wǎng)的設(shè)計與實現(xiàn)4to scale your Web application from one puter with a single processor to a multiputer Web farm cleanly and without plicated changes to the application39。 Framework 的基礎(chǔ)上構(gòu)建的, Framework 功能都適用于 應用程序。 要創(chuàng)建 Web 應用程序,您可以使用 Visual Studio。 此外,還提供了一個免費的獨立產(chǎn)品 Visual Web Developer 學習版,其中包括 Visual Studio 中的核心 Web 設(shè)計功能集。 數(shù)據(jù)訪問概述Web 應用程序通常訪問用于存儲和檢索動態(tài)數(shù)據(jù)的數(shù)據(jù)源。 此方法在 的以前版本中很常見。 在包括如下方案的大多數(shù)常見數(shù)據(jù)方案中,此方法根本不需要任何代碼: 選擇和顯示數(shù)據(jù)。更新、插入和刪除數(shù)據(jù)。 包括幾種參與聲明性數(shù)據(jù)綁定模型的服務(wù)器控件,包括數(shù)據(jù)源控件、數(shù)據(jù)綁定控件和查詢擴展程序控件。 有了這些控件,您不必了解頁請求生命周期的詳細信息即可向頁中添加數(shù)據(jù)綁定行為。 數(shù)據(jù)源控件不呈現(xiàn)任何用戶界面,而是充當特定數(shù)據(jù)源(如數(shù)據(jù)庫、業(yè)務(wù)對象或 XML 文件)與 網(wǎng)頁上的其他控件之間的中間方。 數(shù)據(jù)源控件從 ContextDataSource 類派生,后者是提供數(shù)據(jù)源控件使用的上下文類型的基類。 趙東明:基于 的大學生就業(yè)招聘網(wǎng)的設(shè)計與實現(xiàn)6可以使用 網(wǎng)頁作為 Web 應用程序的可編程用戶接口。 網(wǎng)頁有下列特點: 基于 Microsoft 技術(shù)。兼容所有瀏覽器或移動設(shè)備。 兼容 .NET 公共語言運行時所支持的任何語言,例如 Microsoft Visual Basic 和 Microsoft Visual C。 它提供了 Framework 的所有優(yōu)點,包括托管環(huán)境、類型安全性和繼承。 網(wǎng)頁的組件 在 網(wǎng)頁中,用戶界面編程分為兩個部分:可視組件和邏輯。 可視元素由一個包含靜態(tài)標記(例如 HTML 或 服務(wù)器控件或兩者)的文件組成。 網(wǎng)頁的邏輯由代碼組成,這些代碼由您創(chuàng)建以與頁進行交互。 如果代碼在單獨的類文件中,則該文件稱為“代碼隱藏”文件。 有關(guān)如何構(gòu)建 網(wǎng)頁的更多信息,請參見 網(wǎng)頁代碼模型。 (您也可以選擇預編譯站點,以便在用戶首次瀏覽頁面時不會存在編譯延遲) 。 網(wǎng)頁幫助您完成哪些任務(wù) Web 應用程序編程帶來了一些特殊的難題,在對傳統(tǒng)的基于客戶端的應用程序進行編程時,通常不會遇到這些難題。 客戶端與服務(wù)器的分離 在 Web 應用程序中,客戶端(瀏覽器)和服務(wù)器是不同的程序,它們通常在不同的計算機(甚至不同的操作系統(tǒng))上運行。 無狀態(tài)執(zhí)行 當 Web 服務(wù)器接收到對某頁的請求時,會找到該頁,對其進行處理,將其發(fā)送到瀏覽器,然后丟棄所有頁信息。 換言之,服務(wù)器不會記憶它已處理的頁 頁是無狀態(tài)的。 未知的客戶端功能 在許多情況下,Web 應用程序可供許多使用不同瀏覽器的用戶進行訪問。 數(shù)據(jù)訪問方面的復雜性 對位于傳統(tǒng) Web 應用程序中的數(shù)據(jù)源進行讀取和寫入非常復雜,并且會消耗大量資源。 對于發(fā)展周期較短的應用程序,這往往是一個常見的導致失敗的方面。 網(wǎng)頁和 頁框架通過以下幾個方面來處理這些難題: 直觀、一致的對象模型 頁框架提供了一種對象模型,它使您能夠?qū)⒋绑w當作一個整體,而不是分離的客戶端和服務(wù)器模塊。 此外, 服務(wù)器控件是基于 HTML 頁的物理內(nèi)容以及瀏覽器與服務(wù)器之間的直接交互的一種抽象模型。 事件驅(qū)動的編程模型 網(wǎng)頁為 Web 應用程序帶來了一種您熟悉的模型,該模型用于為客戶端或服務(wù)器上發(fā)生的事件編寫事件處理程序。 這樣就得到了一個清晰的、易于編寫的、支持事件驅(qū)動開發(fā)的代碼結(jié)構(gòu)。 這種狀態(tài)管理無需使用大量服務(wù)器資源即可實現(xiàn),而且可以通過向瀏覽器發(fā)送 Cookie 來實現(xiàn),也可以不通過向瀏覽器發(fā)送 Cookie 來實現(xiàn)。 但是,它仍允許您利用瀏覽器特定的功能,方法是通過編寫客戶端代碼來提供增強的性能和更豐富的客戶端體驗
點擊復制文檔內(nèi)容
環(huán)評公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1