Web Wiz - Solar Powered Eco Web Hosting


Creating my First Classic ASP Page


Difficulty: Beginer
Demo: First Classic ASP Page Example

If you are reading this page then I shall assume that you are new to Classic ASP and want to create your first dynamic ASP web page.

Before we can begin please make sure you have installed IIS (Internet Information Services) on your system as you need one of these web servers to be able to view a page containing ASP (just opening the page in your web browser by double-clicking on the page will NOT work).

For those that do not wish to mess around attempting to install IIS (Internet Information Services) on their own computer there are many hosting companies that supply Windows Classic ASP Hosting including our own Classic ASP Website Hosting Service.

Right, now we have got that out the way we can begin creating your first ASP page.

In this tutorial we are going to display the classic 'Hello World' text in an web page as well as the time on the web server.

As ASP is going to be displayed as part of a web page we first need to create an HTML web page, open up your favourite text editor and type the following.

<html>
<head>
<title>My First ASP Page</title>
</head>
<body bgcolor="white" text="black">

Next we can begin writing some ASP. Any ASP needs to be placed in between the tags, <% ........ %>, to indicate server-side script. In this next part we will start the server side script tag and create a variable to hold the text 'Hello World'.

<%
'Dimension variables
Dim strMessage

Notice I haven't given the variable 'strMessage' a data type, this is because VBScript only has variant as a data type.

Now we have created a variable were going to give it the value 'Hello World'.

'Place the value Hello World into the variable strMessage
strMessage = "Hello World"

Once the variable has a value we can now display the contents of the variable in the HTML by using the ASP 'Response.Write' method to place the contents of the variable into the HTTP stream.

'Write the contents of the variable strMessage to the web page
Response.Write (strMessage)

Next we shall use the 'Response.Write' method to write a line break into the HTML to create a new line before displaying the server time.

'Write line break into the web page
Response.Write ("<br>")

Again using the 'Response.Write' method and the VBScript function 'Time()' we shall now display the server time on the HTML page and close the serer side script tag as we have finished using ASP in this part of the web page.

'Write the server time on the web page using the VBScript Time() function
Response.Write ("The time on the server is: " & Time())

'Close the server script
%>

Finally we need to finish the HTML web page by closing the body tag and the HTML tag.

</body>
</html>

Next, call the file, 'my_first-asp-page.asp' (don't forget the '.asp' extension) and save the file to a directory accessible through your web server (this will usually be, 'c:\inetpub\public_html', on IIS or PWS with a defualt install).

To display the page open your web browser and type 'http://my_computer/my_first-asp-page.asp', where 'my_computer' is replace this with the name of your computer.

And that's about it, you have now created your first dynamic ASP web page!


Other Classic ASP Tutorials

Now that you have created your first Classic ASP page you may wish to tryout some of our other Classic Tutorials.




Become a Fan on Facebook Follow us on Twitter Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Policy

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2023 Web Wiz Ltd. All rights reserved.