- Home
- ASP And ASP.NET
- ASP and Features
ASP and Features
- By Jhon Mark
- Published 03/11/2007
- ASP And ASP.NET
- Unrated
Jhon Mark
View all articles by Jhon Mark
ASP stands for Active Server Pages. It is a Microsoft Technology. ASP is a program that runs inside Internet Information Services. To run IIS, we need Windows NT or later. PWS is a smaller, but fully functional version of IIS. To run PWS, we need Windows 95 or later. InstantASP, ChiliASP are technologies that run ASP without Windows Operating System.
An ASP file has the file extension of ‘.asp’. An ASP file can contain text, HTML, XML and Scripts. Scripts in an ASP file are executed on the server.
Difference between ASP and HTML
When a browser requests an ASP file, IIS passes the request to the ASP engine. The ASP engine reads the ASP file, line by line, and executes the scripts in the file. Finally the ASP file is returned to the browser as plain HTML. But for HTML file, server returns the file.
Functions of ASP
Dynamically edit, change or add any content of a web page.
Access any database and return the results to the browser.
Respond to user queries submitted from HTML forms.
Customize a web page to make it more useful for individual users.
Advantages of ASP
Simplicity and speed compare the CGI and Perl
Provided security since ASP code cannot be viewed from the browser.
ASP pages can be viewed in any browser, because ASP files are returned as plain HTML.
Minimize the network traffic.

