Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

First ASP on IIS local web server

Status
Not open for further replies.

dreampolice

Technical User
Dec 20, 2006
85
US
I have Cold Fusion working on my local Windows XP workstation using IIS and my web pages are in C:\CFusionMX\wwwroot where I see the pages in this url:
[/blue]

Now I want to start creating ASP using IIS but the page doesnt show anything in my attempt in web root (C:\CFusionMX\wwwroot). It shows blank for this attempt here as I try and view it with
Code:
<html>
<body>
<%
response.write("Hello World!")
%>
</body>
</html>

Please advise why the ASP wont work but my Cold Fusion works on my local IIS web server.
 
Try using just
it's possible you have ColdFusion setup to process off it's own web service (the port 8500?). By not specifying a port you are requesting port 80, which is the default port for the server.

The other thing to look at would be placing your file in C:\Inetpub\ This is the default path for the default web server.

You can double check what settings your using by going into the INternet Services manager (Advanced Settings), find the Default Web item, right click on it, and got to properties. In here you should find the default base path for the web site and the port configuration for IIS's Default Web Server.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top