ASP For Beginners ASP / Getting Started
What is ASP? ASP stands for Active Server Pages. Actually, ASP in itself isn't a language, instead it is more of a technology used by VBScript on the server side to display dynamic content on the web pages.
Speeding Up ASP Page Execution ASP / General Development
ASP pages are executed on the fly by a server when they are requested by a visitor. Because they are not compiled, ASP scripts are slow and hold up the processing of an html page. This results in people leaving your site and severely reduces the enjoyment that your asp apps can provide.
Creating a simple ad rotating system using ASP ASP / Scripts
Creating a advertisement rotator page is easy - ASP comes with an Adrotator component that's easy to use. The component, called AdRotator, is installed when you install ASP. The component has been a part of ASP installation since the first version of ASP.
Inserting Rows into a Database ASP / Database Integration
This tutorial will show you how to insert a row of data into a database using ASP and an MS Access database. You can do it on one ASP file, but we'll have two files: one processor page (proc.asp), and one form page (form.asp). Then, we'll make the MS Access database that corresponds to the ASP.
Creating a Server Component with Visual Basic ASP / Component Building
This article is primarily for Active Server Pages (ASP) developers who would like to take their ASP skills a step further. By bundling ASP code into server-side components, developers not only increase Visual Basic functionality and ASP speed, but also find a marvelous way to encapsulate and protect their ASP source code.
Introduction to ASP & What is ASP? ASP / Getting Started
ASP is sometimes described as a server technology which means its not quite a programming language (though developers including myself see it as one). ASP incorporates a programming language called VBscript though you can use JScript and Perl or any other language for that matter just as long as the language concerned supports Active X scripting.
ASP Speed Tricks ASP / Database Integration
This articles describes practical methods of optimizing the performance of classic ASP pages which retrieve and display tabular data from a database. Comparative test results are presented. Many of the techniques apply to ASP.Net and other scripting languages.
A Simple Quiz Script ASP / Scripts
ASP is a very simple language if you know its syntax (in that way, it is much like every other programming language, albeit in ASP's case a bit more forgiving than some others). This tutorial describes the construction of a very simple ASP quiz script, which works with just two files: quiz.asp and data.asp.
ASP Hit Counter ASP / Counters
You can count the number of visitors on your site with a very simple ASP code. Create a file Count.asp with the following code and add in the header of every page useing Server Side Include(SSI).
Sending Email with ASP ASP / Emailing
All good websites need to be able to send and recieve email . Ok you could have a mailto link in your page pointing to your email address which when the user clicked on it their default email client opened up but why not let ASP handle this . We will use ASP and CDONTS for this task .
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.
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.
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.
Creating Dynamic JavaScript with ASP and Databases ASP / Miscellaneous
This tutorial explains how to put ASP tags inside of JavaScript blocks so developers can fit large amounts of data into one form on a single page. It provides an overview of things that can be done with dynamic JavaScript with ASP and data queries.