Open In App

ASP Full Form

ASP stands for active server pages and it is a server-side script engine for building web pages. ASP is basically a server page that contains embedded programs in it. The programs in it are processed on the Microsoft server. The ASP server-side engine basically performs the task of reading and executing the ASP file and then return the file to the browser. It is basically a web-based framework that helps programmers to build dynamic web pages. ASP can contain scripts as well as standard HTML.
History: ASP was firstly introduced in December 1996 as part of IIS (Internet information services) 3.0 which was called ASP 1.0. Then its subsequent versions came in 1997 and 2000 named ASP 2.0 and ASP 3.0 respectively. ASP 3.0 had some additional features so ASP 3.0 increased its performance.
Syntax: 
 




<html>
    <head>
        <title>ASP page</title>
    </head>
    <body>
        <% response.write("Welcome to GeeksForGeeks!") %>
    </body>
</html>

Output 



Welcome to GeeksForGeeks

Characteristics: 

Use of ASP: ASP is mainly used because of its high speed, language-independent nature, and low cost. We can make ASP pages in any language so it is not dependent on a particular language. It is used to develop dynamic websites in a more efficient way.
 



Advantages:  

Disadvantages: 

 

Article Tags :