I have a personal computer running Windows 2000 Pro that is not connecting to any network. I installed the Windows Components for IIS, and I am using Visual Studio .NET 2003.
I am trying to learn ASP.NET but whenever I open a new .NET project (VB.NET or C#), and I select the ASP.NET Web Application template, I get an error message from the IDE stating:
"Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1. You will be unable to run ASP.NET web applications or services"
Additionally, I used a text editor to create an .aspx file with the following content:
<%@ Page Language="C#" %>
<html>
<head>
<title>Hello World ASP.NET Page</title>
</head>
<body>
THIS IS A TEST
<%
// print some output
Response.Write("Hello World! Brought to you by ASP.NET");
%>
</body>
</html>
I have saved the file at:
C:\Inetpub\wwwroot\ASPBasics\test.aspx
I have also used the web server configuration tool to create a Virtual Directory (ASPBasics) mapped to the above path.
When I open a browser with the url "http://localhost/ASPBasics/test.aspx"
All that displays is "THIS IS A TEST".
It looks to me like my IIS installation is not aware of ASP.NET.
Can someone tell me what I need to do to get up and running?
Thank you,
Kevin Yearian