Using The #Include Directive In Asp

Using the #include Directive in ASP

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 …

Formatting The Date In Asp

Formatting the Date in ASP

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. …

Introduction To Active Server Pages (Asp)

Introduction to Active Server Pages (ASP)

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) …

Asp Conditional Statements

ASP Conditional Statements

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 …

Asp Form Collection

ASP Form Collection

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 Using Cdosys In Asp

Sending Email Using CDOSYS in ASP

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 …

Asp Servervariables Collection

ASP ServerVariables Collection

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 …

Asp Request Object

ASP Request Object

The ASP Request object retrieves the values that the client browser passes to the web server during an HTTP request. The main purpose is to retrieve information from the web …

Basic Syntax For Asp

Basic Syntax for ASP

So what does the basic structure and syntax of an ASP page look like? An ASP file appears to be very similar to that of a typical HTML file, with …

Asp Functions And Subroutines

ASP Functions and Subroutines

One of the most powerful features of any programming language is the ability to procedures. Rather than having all of your code in a sequential format, it is more efficient …

Asp Database Access Using Ado

ASP Database Access Using ADO

While ASP as a server-side scripting language is very useful, without access to a database, you will be generally limited to serving static content. Using ADO, we can easily connect …

Redirect Methods Using Asp

Redirect Methods Using ASP

ASP, like many other server-side scripting languages, has the ability to help you implement code that can redirect a user to another web page. The most common technique for redirecting …

Scroll to Top