Active Server Pages (ASP)
January 1st, 2008ASP is Microsoft's means of creating dynamic web pages. Web pages break down into two basic types; static or dynamic
In a static web page, the creator of the page uses HTML to build it, then uploads it to the server. When someone visits the page, the same content that the designer created is downloaded to the visitor's computer and displayed in their web browser. A dynamic page differs slighlty. It also sends HTML to the visitor's web browser, but before it does this, it checks to see if there are any instructions it has to carry out first.
These instruction usually consist of filling in a template with an article or the details of a company. The content used to fill in the template is stored in a database. Once the template has been filled in with the details from the database the page is downloaded to the visitor's web browser in the same way as a static page.

