This is how to do a basic Hello, World! in ASP.
<html>
<head>
<title>Hello World in ASP</title>
</head>
<body>
<%
Response.Write("Hello, World!")
%>
</body>
</html>
There are two parts. The first is the Response, this tells the server that it needs to do something – to send something out as it were. The second part, in this case Write, is what it has to do.
Don't have time to check my blog? Get a weekly email with all the new posts. This is my personal blog, so obviously it is 100% spam free.
Tags: active server pages, asp, hello world
This entry was posted on Saturday, September 15th, 2007 at 5:01 pm and is filed under Programming, Tech. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.