ASP Introduction and Installation Last Updated : 23 Feb, 2021 Comments Improve Suggest changes Like Article Like Report ASP stands for Active Server Page. It is commonly known as Classic ASP or ASP Classic. ASP is a server-side scripting language that is used for executing the scripts on the webserver. This technology was developed by Microsoft. It is an old but still useful tool used to create dynamic webpages. ASP is a program that runs inside a web server. Active Server Pages is a programming environment that gives you the ability to generate interactive dynamic HTML pages with the help of client-side and server-side scripting. What does the ASP file contain: An ASP file has an extension “.asp”. It is the same as HTML Files. An ASP file can contain server scripts in addition to HTML Tags. In an ASP page, VB Script is usually used as a server-side and JavaScript as the client scripting language. Uses of ASP: It is used to get or retrieve the data from the form when the form will be submitted by users. For example, you can have users submit their e-mail addresses to be added to a mailing list.It is used to edit. Change and add more content to a webpage and create a customized website.It is used to get and set the cookies from the web Browser.It is used to give responses to user queries.It is used to communicate with databases means to read data stored in a database or write new data to a database.It is used to implement sessions. Basically, a session is a way to store information about what happens during a user's visit to a website. Through this mechanism, you'll be able to store information about the user like at what time they visited a page. How does it work? When the web Browser requests an HTML File to the webserver then it will return the file o the web browser.On the other hand. When the client requests an ASP file then the server passes over the requests to the ASP engine.An ASP engine is used to read the ASP file Content and executing the server scripts.In the end. The file returns to the Browser as Plain text. How to run ASP File? Firstly download and install a setup on your computer. Press the Windows + R key and type appwiz.cpl in the Run box and press enter.Select “Turn Windows features on or off”Now click on the Internet Information Services check box and select sub-components are given below. It will take some time after click OK.Go to your browser and navigate to localhost. After Installation, Search for a new folder named “Inetpub” on the hard drive of your PC.Inside the “Inetpub” Folder, Open a new folder called”wwwroot.”.C:\inetpub\wwwroot Create a new folder named "Geeks" inside wwwroot. Create a new file named "GFG.asp" inside Geeks Folder. Write some ASP code and save the file as "GFG.asp". Now, check that your web server is running properly or not.In the end, Open your browser and type "http://localhost/Geeks/GFG.asp", to view your first web page Example: A Simple Hello world Program in ASP. ASP <!DOCTYPE html> <html> <body> <% response.write("Hello World") %> </body> </html> Output: Hello World Explanation: This is a very basic example of a Classic ASP page that returns the phrase “Hello World” to the browser along with the rest of the standard HTML. The HTML portions are static, i.e. the server will send them to the browser as-is. The parts delimited by <% %> are what the server will actually process before sending it to the client. Comment More infoAdvertise with us Next Article IIS Full Form M manaschhabra2 Follow Improve Article Tags : Websites & Apps ASP-Basics Similar Reads Why we should use ASP.NET? ASP.NET is a web framework designed by Microsoft Inc. that is extensively used to build robust web applications. In this article, we will analyze why ASP.NET should be chosen over other accessible web frameworks. Following are some main advantages of ASP.NET which makes it better than other framewor 2 min read IIS Full Form IIS stands for Internet Information Services (IIS, formerly known as Internet Information Server) IIS is a web server software package designed for Windows Server. IIS Manager console of Internet Information Services 8.5 initial release on May 30, 1995. IIS provides a redesigned WWW architecture tha 2 min read 30 Days of Linux : A Complete Guide For Beginners Ever thought of learning the Linux Operating System? Why do software and network engineers love Linux? why Linux is different from others. Well, why don't you find yourself? In the next 30 days, you will learn Linux OS from scratch. Let's get started. In the world of operating systems, Linux stands 6 min read Getting Started with CentOS CentOS, short for Community ENTerprise Operating System, is a powerful and widely used Linux distribution known for its stability, security, and open-source nature. Derived from the source code of Red Hat Enterprise Linux (RHEL), CentOS has become a popular choice for server environments and enterpr 7 min read Siemens Interview Questions and Answers for Technical Profiles In this article we prepare for your Siemens technical interview with our comprehensive list of interview questions and expertly crafted answers. Here in this article, we listed a few popular questions and answers that have been asked in the Siemens for Technical Profiles. Siemens concentrated on bus 15 min read 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 execu 2 min read Like