Short sample to resize and convert jpeg, gif and png image files from an ASP page and create on-the-fly Thumbnails using Chart object from Office web components.
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
Image downloading from remote servers in ASP ASP / Images
In this tutorial, we will access to a remote server, download image, rename ths image and save to our file system. We will use one function (getImage) and one subroutine (saveImage) to complete this sampel code.
Random Image Sample ASP / Scripts
This sample code presents three different ways to show a random image in ASP, each approach illustrated and explained.
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).