Re: IIS 5.1 do only read ordinary HTML
From: George Hester (hesterloli_at_hotmail.com)
Date: 12/12/04
- Next message: Egbert Nierop \(MVP for IIS\): "Re: Use of host headers fails after 4 hours"
- Previous message: Kristofer Gafvert: "Re: ASP - exporting to excel"
- In reply to: NOVICE.NET: "IIS 5.1 do only read ordinary HTML"
- Next in thread: NOVICE.NET: "Re: IIS 5.1 do only read ordinary HTML"
- Reply: NOVICE.NET: "Re: IIS 5.1 do only read ordinary HTML"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 12 Dec 2004 12:11:24 -0500
Two tests to see if your HTTP server is working:
1) Make a simple asp file such as:
<%@language="VBScript"%>
<%="Hello"%>
Put that in a file called hello.asp and put that in C:\Intetpub\wwwroot.
Then see if this works:
2) To test for ASP.NET you must install the .NET Framework 1.1 and then in the command prompt navigate to:
C:\Windows\Microsoft.NET\Framework\v1.1.4322 and then type this:
aspnet_regiis -i
That should do all that is necessary:
http://support.microsoft.com/default.aspx?scid=kb;en-us;306005
Then make this file:
<%@language="VB"%>
<%
HelloWorld.InnerText = "Hello World!"
%>
<html>
<head>
<title>Hello World!</title>
</head>
<body style="background-color: #FFFFFF;">
<p id="HelloWorld" runat="server"></p>
</body>
</html>
Save it as hello.aspx and put it in C:\Inetpub\wwwroot.
Then see if this works:
If you have no issues then your server is ready to go. You only need be sure your ISP is not blocking port 80 on you. A common thing this day and age.
-- George Hester _________________________________ "NOVICE.NET" <NOVICE.NET@discussions.microsoft.com> wrote in message news:50793584-13A5-43FD-AEF1-2A0EFBAFF201@microsoft.com... > I'm a Novice running IIS, XP pro, and Dreamweawer. But trying to run ASP or > ASP.NET the IIS do only read HTML from the script, without any error msg or > spagetti code shown. > Beside work, I have spent (at least) a month trying to figure out this, > going thru the settings, reading FAQ's, and in frustration, eaven books and > manuals. Anyone able to help me thru this, will most likely save the > Chrismas for me and my family. > NOVICE.NET
- Next message: Egbert Nierop \(MVP for IIS\): "Re: Use of host headers fails after 4 hours"
- Previous message: Kristofer Gafvert: "Re: ASP - exporting to excel"
- In reply to: NOVICE.NET: "IIS 5.1 do only read ordinary HTML"
- Next in thread: NOVICE.NET: "Re: IIS 5.1 do only read ordinary HTML"
- Reply: NOVICE.NET: "Re: IIS 5.1 do only read ordinary HTML"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|