Home

Submit

Source

Feeds

Home » ASP » General Development ::

ASP General Development
The Session object stores information needed for a particular user's session on the web server. It is automatically created every time when an ASP page from the web site or web application is requested by a user who does not already have a session, and it remains available until the session expires.
Related Tutorials
ASP Cookies and Sessions
ASP Session Transfer across domains
ASP / Cookies and Sessions
You may have come across a situation where you have two ASP websites, possibly on different servers, and you wish to pass a visitor from site 1 to site 2 whilst retaining all the session variables.XSess passes the entire session from one ASP webserver to another securely.

Site: www.tele-pro.co.uk Report - View Tutorial

ASP Cookies and Sessions
Maintaining Session State With ASP
ASP / Cookies and Sessions
Sessions and cookies can be used to persist visitor information. In this article Himanshu shows us how to main session state with ASP using a combination of cookies, sessions and the global.asa file.Session and application variables are an important part of ASP programming.

Site: www.devarticles.com Report - View Tutorial

ASP File Operations
File Object
ASP / File Operations
The File object represents a specified file on the local machine or on a network share. To work with the File object's properties and methods, you need to create an instance of the FileSystemObject object first and then instantiate the File object through the GetFile method. Also you can get a File object reference from the Folder object, by using the Files Collection.

Site: www.webcheatsheet.com Report - View Tutorial

ASP General Development
Folder Object
ASP / General Development
The folder object represents a specified file folder on the current machine. We can use the properties and methods of the Folder object to traverse directories on the drive, and to get at all the properties of this or any other folder. To work with the Folder object's properties and methods, you need to create an instance of the FileSystemObject object first and then instantiate the Folder object through the GetFolder method. Also you can get a Folder object reference from the Drive object, by using the RootFolder property.

Site: www.webcheatsheet.com Report - View Tutorial

ASP General Development
Drive Object
ASP / General Development
The Drive object represents a physical drive. This drive can exist on your machine, or it can be a drive shared by another machine. To work with the Drive object's properties, you need to create an instance of the FileSystemObject object first and then instantiate the Drive object through the GetDrive method or the Drives property of the FileSystemObject object.

Site: www.webcheatsheet.com Report - View Tutorial

ASP Debugging and Error Handling
ASPError Object
ASP / Debugging and Error Handling
The ASPError object is a new in ASP 3.0, and is available in IIS5 and later. It provides a range of detailed information about the last error that occurred in script in an ASP page. The ASPError object is only available through the GetLastError method of the Server object.

Site: www.webcheatsheet.com Report - View Tutorial

ASP Site Navigation and Searching
Object Moved
ASP / Site Navigation and Searching
A small code snippet that lets you eliminate 'Object Moved, This object may be found here' problem that occur on IIS server with some versions of proxy servers.

Site: www.motobit.com Report - View Tutorial

ASP Cookies and Sessions
Sessions
ASP / Cookies and Sessions
This chapter describes: * How ASP server uses cookies to pass an ID with the browser to link multiple HTTP requests together. * How ASP server offers the session object to ASP pages to share information between multiple requests or pages. * Different ways to pass information between requests or pages. * How Perl tools can be used to help debug ASP applications at the HTTP communication level.

Site: www.herongyang.com Report - View Tutorial

ASP General Development
Response Object
ASP / General Development
The Response object is used to send output to the client from the web server. The syntax, collections, properties and methods of the ASP Response object.

Site: www.webcheatsheet.com Report - View Tutorial

ASP General Development
Dictionary Object
ASP / General Development
The Dictionary object is used to store name/value pairs (referred to as the key and item respectively). The Dictionary object is like an associative array, but with its own built-in functionality that looks after the basic tasks of storing and manipulating the data, and sizing for the required number of elements. Each item in the Dictionary object is associated with a unique key. The key is used to retrieve an individual item. We don't have to worry about which row or column the data is in, we just access it using a unique key.

Site: www.webcheatsheet.com Report - View Tutorial

ASP General Development
ASP Request Object
ASP / General Development
The Request object retrieves the values that the client browser passed to the server during an HTTP request. It is used to get information from the user. Using this object, you can dynamically create web pages and perform various server-side actions based on input from the user.

Site: www.webcheatsheet.com Report - View Tutorial

ASP Web Forms
How to Use Dictionary Object
ASP / Web Forms
Dictionary object is an useful object to store any form of data in an array list. Following asp script block stores all data coming from a form and list them in our HTML codes.

Site: www.dotnetindex.com Report - View Tutorial

ASP General Development
Using the Application Object to Improve Performance
ASP / General Development
This article discusses the usage of persistence with the Application object in detail. Explains when to use Persistence, advantanges and disadvantages of using Persistence, and what types of data exchanges are targets for optimization and the benefits and disadvantages of using persistence with the Application object.

Site: www.15seconds.com Report - View Tutorial

ASP General Development
Content Variables
ASP / General Development
This is a simple one page example of how to display all Server, Application and Session variables.

Site: cybercoded.com Report - View Tutorial

ASP Cookies and Sessions
Managing Session with and without Cookies
ASP / Cookies and Sessions
In this chapter, I will show you why, and provide you suggestions on how to manage your own sessions without cookies.

Site: www.herongyang.com Report - View Tutorial

 
Site Search

 
Categories
2D Graphics 3D Graphics Office Applications Databases Desktop Programming Web Development
 
Advertisement