Welcome to Webune Tutorials, today we are going to show you how to make a simple hello world in .asp some people also use .aspx

.asp is for microsoft windows servers like IIS in .NET framework that comes with every windows server like windows 2003 or windows 2008 - if you leased a windows dedicated server from Webune you will find this short simple tutorial helpful

ok, the first step is to open a text editor. i am using windows xp to write this tutorial so i will be using notepad. so open a blank notepad and copy and paste the following code:

ASP CODE:
<% response.write("Hello World") %>


now save the file as: helloworld.asp

now upload to your website with .asp and open the file with your browser from your website:
http://www.example.com/helloworld.asp

you can see it in action

another way you can display the output is by using this simple code:


ASP CODE:
<%
="Hello World"
%>


if you are familiar with PHP, in php there are a number of ways you can make an ouput of text like: echo printr print_r()