Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > ASP pages wont work on iis xp pro

Reply
Thread Tools

ASP pages wont work on iis xp pro

 
 
Catherine
Guest
Posts: n/a
 
      10-09-2003
I am having a problem viewing asp pages on iis version
5.1 xp pro.

HTML pages are viewable on http://localhost but .asp
pages are not. I have created a test program called
timetest.asp with the following code:

<html>
<head>
<title>Test ASP</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
</head>

<body>
<p>this page is </P>

<% response.write "Testing ASP" %>

<p>on the computer running ASP </p>
</body>
</html>


When I create testing.asp and place it in the file:

c:\InetPub\wwwroot\testing.asp

When I open my browser using http://localhost/testing.asp
I see a blank screen??

The html section of the page displays on
http://localhost/testing.asp but the asp script does
not??


All the following have been done:

- Configured IIS accordingly
- Followed instructions for server setup
- No php and jsp compilers are installed.
- Uninstalled and Reinstalled IIS
- asp.dll does exist in the correct directory, plus all
files the dll file requires.
- All root directories are on the local machine using
NTFS.
- Firewalls disabled
- Norton anti virus installed on machine but scipt
blocking disabled.

Is there anything else I need to do or could try to try
and get my web server to display asp pages.


I was signed on as administrator when I installed IIS.

GPO's and domain controller permissions are set to none

I did have the wormblaster virus and adwaregator virus on
my machine before I dont have any of the patches left I
downloaded initially but maybe they damaged some of my
files.

I just havent a clue why it wont work and tearing my hair
out trying to get it to work.


Thanks for any help in advance.

Cat

 
Reply With Quote
 
 
 
 
Bob Barrows
Guest
Posts: n/a
 
      10-09-2003
http://www.aspfaq.com/show.asp?id=2147

HTH,
Bob Barrows

Catherine wrote:
> I am having a problem viewing asp pages on iis version
> 5.1 xp pro.
>
> HTML pages are viewable on http://localhost but .asp
> pages are not. I have created a test program called
> timetest.asp with the following code:
>
> <html>
> <head>
> <title>Test ASP</title>
> <meta http-equiv="Content-Type" content="text/html;
> charset=iso-8859-1">
> </head>
>
> <body>
> <p>this page is </P>
>
> <% response.write "Testing ASP" %>
>
> <p>on the computer running ASP </p>
> </body>
> </html>
>
>
> When I create testing.asp and place it in the file:
>
> c:\InetPub\wwwroot\testing.asp
>
> When I open my browser using http://localhost/testing.asp
> I see a blank screen??
>
> The html section of the page displays on
> http://localhost/testing.asp but the asp script does
> not??
>
>
> All the following have been done:
>
> - Configured IIS accordingly
> - Followed instructions for server setup
> - No php and jsp compilers are installed.
> - Uninstalled and Reinstalled IIS
> - asp.dll does exist in the correct directory, plus all
> files the dll file requires.
> - All root directories are on the local machine using
> NTFS.
> - Firewalls disabled
> - Norton anti virus installed on machine but scipt
> blocking disabled.
>
> Is there anything else I need to do or could try to try
> and get my web server to display asp pages.
>
>
> I was signed on as administrator when I installed IIS.
>
> GPO's and domain controller permissions are set to none
>
> I did have the wormblaster virus and adwaregator virus on
> my machine before I dont have any of the patches left I
> downloaded initially but maybe they damaged some of my
> files.
>
> I just havent a clue why it wont work and tearing my hair
> out trying to get it to work.
>
>
> Thanks for any help in advance.
>
> Cat



 
Reply With Quote
 
 
 
 
Jeff Cochran
Guest
Posts: n/a
 
      10-09-2003
On Thu, 9 Oct 2003 05:31:51 -0700, "Catherine" <>
wrote:

>I am having a problem viewing asp pages on iis version
>5.1 xp pro.
>
>HTML pages are viewable on http://localhost but .asp
>pages are not. I have created a test program called
>timetest.asp with the following code:
>
><html>
><head>
><title>Test ASP</title>
><meta http-equiv="Content-Type" content="text/html;
>charset=iso-8859-1">
></head>
>
><body>
><p>this page is </P>
>
><% response.write "Testing ASP" %>
>
><p>on the computer running ASP </p>
></body>
></html>
>
>
>When I create testing.asp and place it in the file:
>
>c:\InetPub\wwwroot\testing.asp
>
>When I open my browser using http://localhost/testing.asp
>I see a blank screen??
>
>The html section of the page displays on
>http://localhost/testing.asp but the asp script does
>not??


Okay, blank screen or only shows HTML? Did you install the IIS
Lockdown Tool and forget to allow ASP scripts? Personal firewall or
AV software that blocks scripts?

Jeff
 
Reply With Quote
 
Jeff Cochran
Guest
Posts: n/a
 
      10-09-2003
On Thu, 9 Oct 2003 08:58:03 -0700, "TJS" <> wrote:

>5.1 is a little different...
>from the snap in, make sure there is a virtual folder created beneath the
>default web site
>put your test page in this folder, I don't believe it will run in the
>default website folder


Works fine in the default website folder. On all versions of IIS.

Jeff
 
Reply With Quote
 
JeanFor@discussions.microsoft.com
Guest
Posts: n/a
 
      10-18-2003
I have the same problem. I get the message "Class does
not exist" any idea?

Thanks



>-----Original Message-----
>I am having a problem viewing asp pages on iis version
>5.1 xp pro.
>
>HTML pages are viewable on http://localhost but .asp
>pages are not. I have created a test program called
>timetest.asp with the following code:
>
><html>
><head>
><title>Test ASP</title>
><meta http-equiv="Content-Type" content="text/html;
>charset=iso-8859-1">
></head>
>
><body>
><p>this page is </P>
>
><% response.write "Testing ASP" %>
>
><p>on the computer running ASP </p>
></body>
></html>
>
>
>When I create testing.asp and place it in the file:
>
>c:\InetPub\wwwroot\testing.asp
>
>When I open my browser using

http://localhost/testing.asp
>I see a blank screen??
>
>The html section of the page displays on
>http://localhost/testing.asp but the asp script does
>not??
>
>
>All the following have been done:
>
>- Configured IIS accordingly
>- Followed instructions for server setup
>- No php and jsp compilers are installed.
>- Uninstalled and Reinstalled IIS
>- asp.dll does exist in the correct directory, plus all
>files the dll file requires.
>- All root directories are on the local machine using
>NTFS.
>- Firewalls disabled
>- Norton anti virus installed on machine but scipt
>blocking disabled.
>
>Is there anything else I need to do or could try to try
>and get my web server to display asp pages.
>
>
>I was signed on as administrator when I installed IIS.
>
>GPO's and domain controller permissions are set to none
>
>I did have the wormblaster virus and adwaregator virus

on
>my machine before I dont have any of the patches left I
>downloaded initially but maybe they damaged some of my
>files.
>
>I just havent a clue why it wont work and tearing my

hair
>out trying to get it to work.
>
>
>Thanks for any help in advance.
>
>Cat
>
>.
>

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
wont start,wont stop hunty Computer Support 4 06-04-2006 05:26 PM
Hi I am new to asp i can not get it to work on xp pro sp2 even though the localhost work but asp pages dont so can some one help craig dicker ASP .Net 9 07-07-2005 11:52 AM
IIS(5.0) asp pages not work correctly on IIS(6.0) Andrew Mogford ASP General 2 02-16-2005 03:50 PM
DefaultRedirect wont work for aspx pages Gary ASP .Net 6 02-03-2004 07:59 AM
ASP pages wont work on iis XP pro / class does not exist jeanfor@discussions.microsoft.com ASP General 9 10-19-2003 03:36 AM



Advertisments