Archive for the ‘ASP’ Category

Posted on July 23rd, 2008 by by anonymous

Creating Line, Bar, and Area Charts using ASP.NET

In this tutorial, we will learn the basics of developing and creating PNG charts on-the-fly using ASP.NET 2.0 and C#.
View this tutorial

Posted on July 23rd, 2008 by by anonymous

Uploading Files to the Server Hard Disk using plain ASP

This article talkin about how to uploading and displaying binary data with ASP.
View this article

Posted on June 30th, 2008 by by anonymous

Two Ways To Connect To SQL Server 2000 Via ASP

ASP allows even the newest developer to connect to databases with ease. In fact, the ease with which you can connect to a wide range of databases from within an ASP script is one of the reasons why ASP has become so popular. In this article Joe teaches us how to connect […]

Posted on June 30th, 2008 by by anonymous

Using MyODBC To Access Your MySQL Database Via ASP

In this article we’re going to take a look at using the MyODBC driver to talk to a MySQL database in ASP. We will look at two different ways to connect to a MySQL database using the MyODBC driver: via a DSN, and via a connection string. We will use some standard […]

Posted on June 22nd, 2008 by by admin

A Simple Hit Counter

This tutorial will show you how to build a simple hit counter. It does not use any sql or databases and stores the hits in a text file. All you need to create for this script is your asp file and a text file. In the text file, simply enter the number 0 and save […]

Posted on June 14th, 2008 by by admin

Sending HTML Email with ASP

This tutorial talking how we can send HTML messages using the Active Server Pages. The process is quite similar to sending the regular, text message, but yes, there are a few modifications. Using the code given below, you can send HTML messages:
View this tutorial