OK, (both of you)...lets take it one step at a time:
Ken, I have a test for you to see if your server will process ASP pages.
John, There are some idiosynchrosies (?sp) to the SQL Server 2005 Express...I got it running, so any other domestic ape can do so.
ASP test:
You should have a folder at C:\Inetpub\wwwroot\
If you don't, there may be a problem.
If you do...do this:
Create a folder C:\Inetpub\wwwroot\Test\
In the folder 'Test', make a new text document.
Rename it 'Test.asp'
Inside the text document, write:
...and nothing else.
Now, click here: http://localhost/test/test.asp
You should see today's date, and not an error page.
If you got the date, it's running fine.
(edit: This only checks that your server can process ASP pages...not .NET pages. )
Ken, I have a test for you to see if your server will process ASP pages.
John, There are some idiosynchrosies (?sp) to the SQL Server 2005 Express...I got it running, so any other domestic ape can do so.
ASP test:
You should have a folder at C:\Inetpub\wwwroot\
If you don't, there may be a problem.
If you do...do this:
Create a folder C:\Inetpub\wwwroot\Test\
In the folder 'Test', make a new text document.
Rename it 'Test.asp'
Inside the text document, write:
Code:
<%
Response.Write(Date())
%>
Now, click here: http://localhost/test/test.asp
You should see today's date, and not an error page.
If you got the date, it's running fine.
(edit: This only checks that your server can process ASP pages...not .NET pages. )
Last edited: