Introduction to ASP
Results 1 - 20 of 47
Response.Redirect Usage
Response.redirect is used to move any request form client to another page. This is most common usage to tell browser to get another page and to redirect any request to other source.
Using Object in ASP
To use an object in ASP, you should create an instance of an object. We use 'CreateObject method' creating object. Let's see it on an real application. .
Multi Dimensional Arrays
In this article we will look at Multi Dimensional Arrays, Focusing on the Nontraditional Arrays.
An introduction to ASP
Active Server Pages is a programming environment that gives the ability to generate dynamic html pages with the help of server side scripting. This article will help you to understand what is ASP, How is works and how to get started with ASP.
AppendToLog in response object
There are many magic methods in response object. With AppendToLog method you can access and write your message to ISS logs. This could be very usefull if you wish to create custom messages in log files. But there is greate limitation of this method which...
(show more)
Storing and retrieving variables from application object
In this tutorial, we will take a look at Application Object. When you've used Application Object, all ASP pages can store and retrieve information. The information in Application Object stored in server and all ASP pages can access the information. The...
(show more)
How to Find the Current URL with ASP
This article will tell you how to find the full URL of the current page with ASP: domain name, path and the QueryString.
How to use the QueryString in ASP
This article tells you how to pass variables to an ASP page using the QueryString, and how to access them from that page.
Introduction to Built-in Objects in ASP Pages
This tutorial helps you understand: How ASP server presents the programming environment to ASP pages with a number of run-time objects. Basic properties and methods of run-time objects: request, response, server, application, and session.
ASP Looping Statements
ASP performs several types of repetitive operations, called "looping". Loops are set of instructions used to repeat the same block of code till a specified condition returns false or true depending on how you need it. This tutorial shows the basic idea...
(show more)
Conditional Statements in ASP
Sometimes when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this. There are two types of conditional statements in ASP: if...then and select case. In this tutorial we...
(show more)
ASP Tutorials - Microsoft Scripting Runtime DLL
This tutorial helps you to understand: "scrrun.dll" "Dictionary" Class "FileSystemObject" Class "Drive" Class "Folder" Class "File" Class "TextStream" Class
ASP Tutorial (Tizag Tutorials)
Learn the basics of ASP with Tizag.com's ASP Tutorial with more than 20 lessons from ASP syntax to connecting to a database.
Herong's Tutorial Notes on ASP
Notes and sample codes collected while learning ASP. Topics covered include: ActiveX, ASP, attachment, binary file, book, collection, cookies, example, free, HTTP reponse header, IIS, language, online, Perl, redirect, sample codes, scripting, script...
(show more)
Introduction to ASP
A fairly in-depth introduction to the ASP language.
Learn about Loops And Arrays in ASP
This great tutorial will take you through the basics of different types of loops in ASP.
Variables and Output
Learn the basics of variables and outputting text to the users browser in ASP.
All about IF Statements
Learn how to use IF statements in this tutorial.
Dynamic Copyright
There's nothing worse than seeing a site with a Copyright out of date. It's an immediate turnoff. This little function comes in handy for creating a copyright that never goes out of date.
Replace Bad Word(s)
This tutorial shows you how to replace bad words in a string in 2 different ways. Firstly you can remove the bad word(s) or replace the bad word(s) with the * character.
