There is a very cool way to download or grab a file using ServerXMLHTTP class. Using this object you could access and download a remote file out side of your website.
Creating an ASP-driven Page Counter for HTML Pages ASP / Counters
This article examines a technique to provide dynamic content generated from an ASP page onto a static HTML page. Specifically we needed to display a page counter on a number of static HTML 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.
Adding Form Content into Database ASP / Web Forms
In this article we will create a simple HTML Form and an ASP page. Any data which is entered by the user in that HTML Form will be received by the ASP action page and will enter that data into the Access database.
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.
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
Adding Records to a Database using SQL ASP / Database Integration
The purpose of this article is to show how to get records from an html form and submit that form to an ASP page. This ASP page will then use SQL to enter the records into the database.
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.
Free HTML code reduction (.asp) ASP / Miscellaneous
This script will open all HTML pages within the specified directory, reduce the file size of your html pages, and the files will be saved back.
ASP Form Input to HTML ASP / File Operations
ASP has the ability to write .html or any other text based documents directly to a web server (You need to write the text output to a directory that has write authority). This enables the instantaneous publication of user input without the need for uploading files from a PC.
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.
Self Submitting Pages ASP / Web Forms
A very important coding method to understand when developing ASP pages is the page that submits to itself. This technique is very powerful and can drastically reduce the number of files you have to maintain and the number of places in which you need to make changes when maintaining code. The concept is simple. Using forms, set the action value to the URL of the page in which the form resides. Then use ASP code to determine what the current state of the page is, and present the proper output to the user.
Printing Headers on Every Page ASP / Database Integration
Develop a web based report that would collect data from a database, format it in an HTML page and then print a certain number of rows on each page with a column header and find out how to do a page break after a certain number of rows.