asp內(nèi)部session對話管理[外文翻譯].rar
asp內(nèi)部session對話管理[外文翻譯],asp內(nèi)部session對話管理[外文翻譯]包含中文翻譯和英文原文,內(nèi)容詳細(xì)完整,建議下載參考!中文: 3853 字英文: 11000字符基于網(wǎng)絡(luò)開發(fā)人員都能調(diào)整,web應(yīng)用程序的難題之一,如何在一些獨立的html頁面之間保持他們的連貫性連接。也就是說在一次用戶訪問期間,即一次會話期間,當(dāng)用戶在一個應(yīng)用程序的頁與頁之間...
該文檔為壓縮文件,包含的文件列表如下:
內(nèi)容介紹
原文檔由會員 xiaowei 發(fā)布
ASP內(nèi)部Session對話管理[外文翻譯]
包含中文翻譯和英文原文,內(nèi)容詳細(xì)完整,建議下載參考!
中文: 3853 字
英文: 11000字符
基于網(wǎng)絡(luò)開發(fā)人員都能調(diào)整,Web應(yīng)用程序的難題之一,如何在一些獨立的HTML頁面之間保持他們的連貫性連接。也就是說在一次用戶訪問期間,即一次會話期間,當(dāng)用戶在一個應(yīng)用程序的頁與頁之間跳轉(zhuǎn)時,如何維護(hù)用戶信息。這個問題一直困擾著Web開發(fā)人員因為HTTP是一種無狀態(tài)的協(xié)議,在請求瀏覽器 的時候HTTP1.0協(xié)議并不提供一個機(jī)制來保存狀態(tài)信息。Web服務(wù)器將某頁的每次訪問都當(dāng)作是相互無關(guān)的訪問來處理;服務(wù)器不保留前一次訪問的任何信息,即使訪問就發(fā)生在當(dāng)前訪問的幾秒之前。
為了克服這種限制,應(yīng)用程序開發(fā)者需要一種技術(shù)來在Web上提供協(xié)調(diào)的用戶對話。ASP提供了強(qiáng)大的而且靈活的Web對話管理也并不需要復(fù)雜的編程。對話對象,一個ASP提供的內(nèi)置對象,提供了一個完整的Web對話的管理解決開發(fā)方案 ......
ASP and Web Session Management
Introduction
One of the challenges faced by Web developers is how to create a coherent application out of a series of independent HTML pages. This problem is a particular concern in Web development because HTTP is a stateless protocol. Each browser request to a Web server is independent, and the server retains no memory of a browser's past requests. The HTTP 1.0 protocol did not provide a mechanism to maintain state information between requests from a browser.
To overcome this limitation, application developers require a technique to provide consistent user sessions on the Web. Active Server Pages (ASP) provides powerful and flexible Web session management that requires no special programming. The Session object, one of the intrinsic objects supported by ASP, provides a developer with a complete Web session management solution.
The Session object supports a dynamic associative array that a script can use to store information. Scalar variables and object references can be stored in the session object. A script simply assigns a value to a named entry in the array ......
包含中文翻譯和英文原文,內(nèi)容詳細(xì)完整,建議下載參考!
中文: 3853 字
英文: 11000字符
基于網(wǎng)絡(luò)開發(fā)人員都能調(diào)整,Web應(yīng)用程序的難題之一,如何在一些獨立的HTML頁面之間保持他們的連貫性連接。也就是說在一次用戶訪問期間,即一次會話期間,當(dāng)用戶在一個應(yīng)用程序的頁與頁之間跳轉(zhuǎn)時,如何維護(hù)用戶信息。這個問題一直困擾著Web開發(fā)人員因為HTTP是一種無狀態(tài)的協(xié)議,在請求瀏覽器 的時候HTTP1.0協(xié)議并不提供一個機(jī)制來保存狀態(tài)信息。Web服務(wù)器將某頁的每次訪問都當(dāng)作是相互無關(guān)的訪問來處理;服務(wù)器不保留前一次訪問的任何信息,即使訪問就發(fā)生在當(dāng)前訪問的幾秒之前。
為了克服這種限制,應(yīng)用程序開發(fā)者需要一種技術(shù)來在Web上提供協(xié)調(diào)的用戶對話。ASP提供了強(qiáng)大的而且靈活的Web對話管理也并不需要復(fù)雜的編程。對話對象,一個ASP提供的內(nèi)置對象,提供了一個完整的Web對話的管理解決開發(fā)方案 ......
ASP and Web Session Management
Introduction
One of the challenges faced by Web developers is how to create a coherent application out of a series of independent HTML pages. This problem is a particular concern in Web development because HTTP is a stateless protocol. Each browser request to a Web server is independent, and the server retains no memory of a browser's past requests. The HTTP 1.0 protocol did not provide a mechanism to maintain state information between requests from a browser.
To overcome this limitation, application developers require a technique to provide consistent user sessions on the Web. Active Server Pages (ASP) provides powerful and flexible Web session management that requires no special programming. The Session object, one of the intrinsic objects supported by ASP, provides a developer with a complete Web session management solution.
The Session object supports a dynamic associative array that a script can use to store information. Scalar variables and object references can be stored in the session object. A script simply assigns a value to a named entry in the array ......