What is ASP? Hello World program in ASP
ASP stands for Active Server Pages; this is Microsoft's Server side scripting technology. Server Side scripts are set of instructions which are processed before sending the page to client's web browser from server. It differs from HTML as it provides dynamic contents
ASP stands for Active Server Pages; this is Microsoft's Server side scripting technology.
Server Side scripts are set of instructions which are processed before sending the page to client's web browser from server. It differs from HTML as it provides dynamic contents
When you type a URL in address box of a browser you are requesting server to send the specified file on your Browser. If the specified file is HTML then Server simply sends file.
If the specified file is ASP page(with .asp extension) then before sending this file to the client browser the server processes all the server side scripts contained in the page and what is showed in the visitor's browser is a simple HTML-Document means you cant see the scripts by going to view source of browser.
In Active Server Pages developers write intermixed html elements and scripts. These scripts are enclosed between opening and closing tags.Scripts can be inserted anywhere in the page. You can write these scripts in VBScript or Jscript.
Before you design an ASP application you must have installed Microsoft Internet Information Services or Microsoft Personal Web Server on your machine. Microsoft Personal Web server has limited functions compared to IIS, but it's enough to develop ASP page.
You can check whether IIS server is successfully installed or not by entering http://localhost/ or http://127.0.0.1/ In address bar of web browser. There should be page that tells more about Microsoft IIS.
Now we are going to write the first program, Hello World.
we have enclosed a s line of VBScript within the opening and closing tags. It is Response.Write “Hello World” This statement displays the “Hello World” on the webpage.
Happy Coding
-
Canon EOS 5D Mark II
| By siyuanxi | in Small Business
Canon 5D Mark II apart from a small number of drawbacks (short film as well as power consumption), not really pick ...
-
How to install IIS on Windows XP
| By rajeshchoudhary | in Computers
You can make your Windows XP machine Web Server by installing IIS (Internet Information Server) on it using followi...
-
The Explosive Review - Rocky II (1979)
| By Stephen_Brno | in Film,TV & radio
In "Rocky II", the story does indeed continue as the film's tagline tells us and the story itself can be regarded a...
-
Pope Julius II - Rise to Power
| By peterstone | in Religion
Pope Julius II (c. 5 December 1443 – 21 February 1513), nicknamed Il Papa Terribile (The Terrible Pope), was born...
-
Halloween II (2009): Rob Zombie's Unnecessary Sequel
| By Stephen_Brno | in Movies
Rob Zombie's "Halloween II" rips off the original "Halloween II" from 1981 in its first 20 to ...
-
Howto use QueryString in ASP.NET for passing info between pages | By rajeshchoudhary | in Web Development
The QueryString in ASP.NET is used to pass information between pages....
-
Custom error pages in asp.net using configuration file | By rajeshchoudhary | in Web Development
In ASP.NET you can handle page level errors using OnError method of page object or Application level errors using A...
-
Build A Free Ecommerce Store Front In Less Than An Hour | By AaronMeagher | in Web Development
Are you looking to start selling online and want a quick and easy solution for your ecommerce storefront? While yo...
-
Black Hat SEO Techniques | By ChandraK | in Web Development
Black hat SEO is a technique that is used to get higher ranking for the website in a base manner. Black hat SEO is ...
-
White Hat SEO Techniques | By ChandraK | in Web Development
White hat SEO is a method that follows all the required webmaster guidelines in effective building of the website. ...
-
Howto use QueryString in ASP.NET for passing info between pages | By rajeshchoudhary | in Web Development
The QueryString in ASP.NET is used to pass information between pages....
-
Custom error pages in asp.net using configuration file | By rajeshchoudhary | in Web Development
In ASP.NET you can handle page level errors using OnError method of page object or Application level errors using A...
-
Using remote desktop in windows XP | By rajeshchoudhary | in Computers
if you want to connect to a machine remotly using Remote Desktop Connection, remote Desktop in target machine needs...
-
setting password wisely for your accounts | By rajeshchoudhary | in Computers
Incidents of information phishing and hacking are happening every now and then. One fine day morning you wake up to...
-
Web.config –configuration file for ASP.NET web application. | By rajeshchoudhary | in Web Development
This article tells what web.config file is, how to write this and how this file is used by run time to apply settin...








No comments yet.