Built-in Objects ASP / General Development
This chapter describes:
* How ASP server presents the programming environment to ASP pages with a number of run-time objects.
* Basic properties and methods of run-time objects: request, response, server, application, and session.
Cookies with ASP ASP / Cookies and Sessions
Cookies can be a good method for passing data between pages and especially for retaining data between sessions. Today, it's pretty safe to assume that anyone who is using your site can use cookies, since nearly every site that is non-static makes use of them(including all ASP sites that use sessions). It is also possible to set and read cookies using client-side code, but it is a bit more difficult. Reading and writing cookies using Active Server Pages' built in Request and Response objects is incredibly easy.
Basic Active Server Pages Tutorial for beginners ASP / Getting Started
This tutorial will teach you the basics of vbscript, ASP intrinsic objects, how to call ASP intrinsic objects and make use of them and what makes a .asp page different from a .htm / .html page.
Display Image From Database ASP / Database Integration
It is possible to store images in a database using a number of third party tools or a custom built component. Once you have the images stored in your database, however, displaying them requires the use of a simple ASP page.
ASP.NET Table Searching ASP / Database Integration
This is a very quick time application built using Microsoft ASP.NET. Its basic purpose is to show the power and Rapid Application Development features in ASP.NET.
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.
Create html bar graph in ASP ASP / Charts and Graphs
This article shows simple method to create charts without external client or server objects, without .gif, jpg or png - the chart is created as HTML, directly in page
Herong's Notes on ASP ASP / Getting Started
Notes and sample codes collected while learning ASP. Topics covered include: IIS, Script Debugger, VB Script, Objects, Session, Cookie, Script Runtime DLL, ADO, and performance.