I just got ASP support enabled with my host and I'm trying to write my first active server page with a simple 'Hello World' test:
<!-- Test.asp -->
<html>
<body>
<% puts "Hello World!" %>
</body>
</html>
but instead of getting this output in the browser:
Hello World!
I get this:
<!-- Test.asp -->
<html>
<body>
<% puts "Hello World!" %>
</body>
</html>
Am I missing something? Is there setup that I have to do with my host prior to being able to use ASPs?