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 …

Running Asp On A Web Server

Running ASP on a Web Server

Hosting Providers Unless you are hosting your ASP web application on your own Microsoft IIS web server, you generally do not have to worry about the installation and configuration steps …

Asp Server Object

ASP Server Object

The ASP Server object is used to access methods and properties on the server. The Server object provides a variety of functions such as the ability to execute other ASP …

Asp Filesystem Object

ASP FileSystem Object

In ASP, the FileSystemObject can be used to access the file system on a web server. Accessing file, folder, and drive information on the web server is completed using this …

Working With Operators In Asp

Working with Operators in ASP

VBScript is very flexible when it comes to storing data in variables. You can add variables that contain numbers together, or even concatenate strings. In ASP, we can group operators …

Asp Folder Object

ASP Folder Object

The ASP Folder object is used to access a specified file folder on the web server. As with other objects, the Folder object has properties and methods to help you …

Querying Active Directory From Sql

Querying Active Directory from SQL

Microsoft’s object linking and embedding for database (OLE DB) providers can create connections to non-SQL Server data sources. Unlike the older ODBC standard, OLE DB can also connect to some …

Server Side Scripting With Asp

Server Side Scripting with ASP

If you have already learned JavaScript, then you have an understanding of the concept of client-side scripting. Server-side scripting is similar, but with one major difference. The processing of the …

Scroll to Top