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

正文內(nèi)容

計算機專業(yè)畢業(yè)外文翻譯--aspnet技術-jsp程序(完整版)

2025-07-10 17:45上一頁面

下一頁面
  

【正文】 Web site. For example, if you display database data in a control that has view state enabled, you do not have to return to the database each time the page is posted back to the server. You can automatically preserve the data within the page39。 舉例來說,對于每一種語言,你必須包括存取文件系統(tǒng)、與數(shù)據(jù)庫協(xié)同工作和操作字符串的方法。 為什么繼續(xù)再創(chuàng)輪子 ? 對所有的語言創(chuàng)建這種功能一次,然后把這個功能用在每一種語言中豈不是更容易。 理解命名空間 正如你猜測的 , .NET framework是龐大的。 樹根就是 SYSTEM 命名空間。 包含的類是標準的集合類,例如:哈希表,數(shù)組列表。 包含執(zhí)行保存狀態(tài)的類。 提示 本書所含的光碟包含 C 源代碼。 當 頁面被編譯的時候,它沒被直接地被編譯成機器碼而是被編譯成了一個中間語言,名字叫 (MSIL)所有 .NET可用的語言都被編譯成這種中間語言。 此外,不像 VBScript , Visual Basic 是一種被編譯的語言。 舉例來說,你能使用 IL Disassembler 瀏覽 TextBox 控件的中間代碼。 如果一個使用者單擊 HTML窗體中的 Button按鈕, 舉例來說,那個按鈕就會響應一個事件 (單擊事件 ) 。 下面的部分為這些 Web控件提供了詳細的提綱和程序源代碼。 3. 用驗證控件做頁面驗證 使用客戶端驗證 傳統(tǒng)地,當增加驗證到他們的頁面中時,他們會面臨一個嚴峻的選擇。 由于這個原因,許多開發(fā)者在過去決定添加自定義驗證到服務器端。 尤其,正如這一章討論的客戶端腳本不可能在任意本本的瀏覽器中運行。 總結(jié)錯誤 : ValidationSummary 控件 假想一個頁面有 50個字段假如你僅僅用上部分討論的那些驗證控件來顯示錯誤看見一個 錯誤在頁面中將是很難的。 瀏覽狀態(tài)在一個名叫做 VIEWSTATE的隱藏頁面中執(zhí)行,這個隱藏頁面自動創(chuàng)建 每個 Web窗體。 在下列的部分中,你學會用屬性設置在一個窗體中來隱藏或顯示控件。 使用豐富頁面的控件 在下列的部分中,你學會在 Framework怎樣使用三種特征控件。 Web控件 (不是每個 HTML 控件 ) 還有一個叫 Enabled的屬性 。 舉例來說,假想你正在創(chuàng)造一種在線納稅系統(tǒng),而 且你想要顯示或者隱藏一個包含適用于已婚的稅文件編檔員的問題的部分。 4. 先進的控件編程 保存瀏覽狀態(tài) 默認地,幾乎所有的 控件都會在先前的窗體中保留他們的屬性值。 例如:你能使用這控件來檢查一個用戶是否輸入一個合法的電子郵件地址,電話號碼,用戶名或密碼。 這些驗證控件會自動地產(chǎn)生客戶端代碼和服務器端代碼。 人們喜歡客戶端的驗證。 最后,你學會用超級鏈接控件怎么把頁面連在一起。 當它被請求的時候一個 頁面每次都能夠響應幾個事件。 控件和 HTML 內(nèi)容共存。 提示 在 .NET framework中, 微軟包括一個名叫 IL Disassembler的有趣的工具。 典型 ASP提示 VBScript 怎么樣呢 ? 在 之前, VBScript 是開發(fā)動態(tài)頁面最流行的語言。 不管你使用什么語言開發(fā) 頁面,你需要明白 譯,這就意味著 。 .NET Framework 可用的語言 這一本書的目的 , 你將會為以 Visual Basic 作為你的編程語言來完成你的 頁寫程序編寫。 包含的是匹配正則表達式和替代操作類。 提示 你能夠瀏覽 .NET Framework所有的標準類的命名空間。 ASP Classic Note 在先前的 ASP中,你僅僅能夠訪問五個標準類 。 除此之外,它包含更多特殊的類用在正則表達式和處理 Web協(xié)議。 最后,大多數(shù)的編程語言有相似 的數(shù)據(jù)變量類型。 the control is not processed for either prerendering or rendering. Web controls (but not every HTML control) have an additional property named Enabled. When Enabled has the value False and you are using Inter Explorer version or higher, the control appears ghosted and no longer functions. When used with other browsers, such as Netscape Navigator, the control might not appear ghosted, but it does not function. Disabling View State In certain circumstances, you might want to disable view state for an individual control or for an page as a whole. For example, you might have a control that contains a lot of data (imagine a RadioButtonList control with 1,000 options). You might not want to load the data into the hidden __VIEWSTATE form field if you are worried that the form data would significantly slow down the rendering of the page. Using Rich Controls In the following sections, you learn how to use three of the more featurerich controls in the framework. You learn how to use the Calendar control to display interactive calendars, the AdRotator control to display rotating banner advertisements, and the HTMLInputFile control to accept file uploads. 技術 頁面 和 是微軟 .NET framework整體 的一部分 , 它包含一組大量的編程用的類 ,滿足各種編程需要。t piled into native machine code until it is actually requested by a browser. At that point, the class file contained in the Temporary Files directory is piled with the .NET framework Just in Time (JIT) piler and executed. The magical aspect of this whole process is that it happens automatically in the background. All you have to do is create a text file with the source code for your page, and the .NET framework handles all the hard work of converting it into piled code for you. ASP CLASSIC NOTE What about VBScript? Before , VBScript was the most popular language for developing Active Server Pages. does not support VBScript, and this is good news. Visual Basic is a superset of VBScript, which means that Visual Basic has all the functionality of VBScript and more. So, you have a richer set of functions and statements with Visual Basic. Furthermore, unlike VBScript, Visual Basic is a piled language. This means that if you use Visual Basic to rewrite the same code that you wrote with VBScript, you can get better performance. If you have worked only with VBScript and not Visual Basic in the past, don39。t worry. Since VBScript is so closely related to Visual Basic, you39。 在下列的二個部分中 , 你如何學會 很適合的放在 .NET framework, 和學會能在你 的 頁面中使用語言。 以大多數(shù)的語言,你有設定字符串類型和整型數(shù)據(jù)類型的方法。 .NET framework, 此外包含支持所有的基本變量數(shù)據(jù)類型的類 , 比如 : 字符串、整型、字節(jié)型、字符型和數(shù)組。相比之下 提供超過 3,400個類 ! 一個命名空間包含一組邏輯的類。通過 .NET Framework 的參考文檔可以瀏覽類庫 。 命名空間 工作在萬維網(wǎng)方面包含的是瀏覽器請求和服務器響應的類。 它是 頁面的默認語言。 你第一次請求 頁面 , 頁面被編譯成一個 .NET類 , 這個類文件被保存在一個特殊的目錄下這個目錄的名字叫 Temporary Files。 不支持 VBScript ,而且這是好消息。在臨時的 類的代碼。 典型地,你用通常的 HTML 創(chuàng)建你的網(wǎng)頁的靜態(tài)區(qū)域和用 控件創(chuàng)建網(wǎng)頁的動態(tài)區(qū)域。 舉例來說,每當你請求一個頁面,頁面的初始化事件就會被觸發(fā)。 對控件應用格式 在下列的部分中,你學會該如何創(chuàng)建更有吸引力的 Web窗體。 它看起來很棒而
點擊復制文檔內(nèi)容
畢業(yè)設計相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1