|
Hello World in ASP
Unlike PHP there is not much complicated syntax to ASP. Its
pretty simple coding. For instance if you wanted to write
a Hello World page:
<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.
|