ADO Connection Object
The ADO Connection object provides a way to open a connection to a data source. Once the connection is established, you can then access and manipulate data from your data …
The ADO Connection object provides a way to open a connection to a data source. Once the connection is established, you can then access and manipulate data from your data …
The ADO Command object has the functionality of executing commands against the data source, typically a database. In general, the Command object is created implicitly when executing an operation against …
After opening a connection with your data source, typically a database, your next step is to read from the data source and load the data into a recordset. To perform …
Updating database records is a very common process that any typical ASP web application would include. In this tutorial, we will take a look at some sample ADO/ASP codes that …
In this tutorial, we will take a look at an example of how to insert new records in a database table using ASP and ADO. We need to understand how …
For most websites, the pages that make up the site all share a common layout and set of elements. ASP allows you include external files within ASP pages, by using …
Working with Date and Time data is very common in any ASP web application. In this tutorial, we will cover how to properly use the various ASP Date related functions. …
What is ASP Active Server Pages, or ASP, was introduced in 1996 by Microsoft. Back then, ASP would be downloaded and installed as a feature of Internet Information Server (IIS) …
Having the ability to perform different actions based on certain conditions is a critical component of any programming language. One of the ways that you can have your program execute …
Using forms in your ASP Applications is a common way of collecting user input for further processing. The ASP Form collection retrieves the values of form elements posted to the …
Sending email from an ASP web application is a fairly easy task. If you are hosting your ASP web application on a server running Windows 2000 or later, you’ll find …
The ASP ServerVariables Collection retrieves the values of predetermined environment variables and requests header information. The ASP ServerVariables collection can provide you with quite a bit of information found in …