asp内部session对话管理[外文翻译].rar

RAR格式版权申诉手机打开展开

asp内部session对话管理[外文翻译],asp内部session对话管理[外文翻译]包含中文翻译和英文原文,内容详细完整,建议下载参考!中文: 3853 字英文: 11000字符基于网络开发人员都能调整,web应用程序的难题之一,如何在一些独立的html页面之间保持他们的连贯性连接。也就是说在一次用户访问期间,即一次会话期间,当用户在一个应用程序的页与页之间...
编号:36-74261大小:23.50K
分类: 论文>外文翻译

该文档为压缩文件,包含的文件列表如下:

内容介绍

原文档由会员 xiaowei 发布

ASP内部Session对话管理[外文翻译]

包含中文翻译和英文原文,内容详细完整,建议下载参考!

中文: 3853 字
英文: 11000字符

基于网络开发人员都能调整,Web应用程序的难题之一,如何在一些独立的HTML页面之间保持他们的连贯性连接。也就是说在一次用户访问期间,即一次会话期间,当用户在一个应用程序的页与页之间跳转时,如何维护用户信息。这个问题一直困扰着Web开发人员因为HTTP是一种无状态的协议,在请求浏览器 的时候HTTP1.0协议并不提供一个机制来保存状态信息。Web服务器将某页的每次访问都当作是相互无关的访问来处理;服务器不保留前一次访问的任何信息,即使访问就发生在当前访问的几秒之前。
为了克服这种限制,应用程序开发者需要一种技术来在Web上提供协调的用户对话。ASP提供了强大的而且灵活的Web对话管理也并不需要复杂的编程。对话对象,一个ASP提供的内置对象,提供了一个完整的Web对话的管理解决开发方案 ......



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 ......