Re: What is ASP?
To participate in the Web application world, Microsoft developed ASP (Active Server Pages). ASP is a quick and easy way to develop Web pages. These pages consist of a single page that contained a mix of markup and languages. The power of ASP is that you can include VBScript or JScript code instruction in the page executed on the Web server before the page was sent to the end user's Web browser. This was an easy way to create dynamic Web pages customized based on parameters dictated by the developer.
ASP used script between brackets and percentages signs --<% %>-- to control the server-side behaviors. A developer could then build an ASP page by starting with a set of static HTML. Any dynamic element needed by the page was defined using a scripting language (such as VBScript or JScript). When a user requested the page from the server bt using a browser, the asp.dll (an ISAPI application that provided a bridge between the scripting language and the Web server) would take hold of the page and define all the dynamic aspects of the page on-the-fly based on the programming logic specified in the script. After all dynamic aspects of the page were defined, the result was an HTML page outout to the browser of the requesting client.
ASP evolved and new versions were released. ASP 2.0 and 3.0 were popular because the technology made it relatively strightforward and easy to create Web pages. Their popularity was enhanced because they appeared in the late '90s, just as dotcom era was born. During this time, a mountain of new Web pages and portals were developed, and ASP was one of the leading technologies individuals and companies used to build them.
|