I've just started trying to learn ASP.NET with an online tutorial. I'm on a Novell client for Win 2k. The following simple code has been saved in Notepad as "firstdotnetpage.aspx":
<html>
<body bgcolor="yellow">
<center>
<h2>Hello!</h2>
<p><%Response.Write(now())%></p>
</center>
</body>
</html>
When I open the page with IE 6, it only opens like a static html page and the ASP output does not appear. If you view source, however, the <p><%Response.Write(now())%></p> does appear.
What have I missed in order to activate ASP.NET?
<html>
<body bgcolor="yellow">
<center>
<h2>Hello!</h2>
<p><%Response.Write(now())%></p>
</center>
</body>
</html>
When I open the page with IE 6, it only opens like a static html page and the ASP output does not appear. If you view source, however, the <p><%Response.Write(now())%></p> does appear.
What have I missed in order to activate ASP.NET?