| The Center for the Advancement of Teaching and
Learning
Praxis |
||||||||
|
Volume 7 Issue 2 April 2003 |
||||||||
|
Copying the source code of a Web page
|
Introduction to Active Server Pages (ASPs) Ever wondered what it means when you see: .asp???? Active Server Pages are an effective way to create web server applications. Active Server Pages are web pages saved with the file extension “.asp”. A compatible web server will recognize the file extension, process it, and send the results to the web client’s browser as an HTML page. Active Server Pages can be written in a number of scripting languages such as JScript or PerlScript. An ASP file can contain text, scripts and HTML tags. The scripts on an ASP page are interpreted on the server, therefore the browser does not need to support scripting. When a browser requests an ASP file, the server invokes the ASP program that resides on the server. This program reads the ASP file and interprets the lines of script in the file. The processed results of the ASP file are returned to the browser and appear as an HTML page in the client’s browser.
|
||||||
|
||||||||