Welcome to HostingForumz.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Invalid URL when using LOcalHost

 
   Web Hosting Problem Solving Community! (Home) -> IIS RSS
Next:  IIS logfile monitoring - FindFirstChangeNotificat..  
Author Message
anonymous341

External


Since: Nov 06, 2003
Posts: 1



(Msg. 1) Posted: Thu Nov 06, 2003 6:59 am
Post subject: Invalid URL when using LOcalHost
Archived from groups: microsoft>public>inetserver>iis (more info?)

I am trying to run some asp pages on my personal
computer. Prevoiuslu I was using Windows-98 Personal Web
Servier. Now I have Windows XP and I just installed IIS.
.. I put the script in C;\inetup\wwwroot. That is the
home page of the default web when I go to IIS Adm tools
and look at it.

When I run from Netscape(4.61), sometimes the script just
hangs, other times I get the message Invalid URL.
Tried in IE 6.0 and get the same type of message.

I downloaded Frontpage 2002 extensions and installed them
also.. I am using Frontpage 2000. Would that cause a
problem?

Need help, have to develop some ASP pages

 >> Stay informed about: Invalid URL when using LOcalHost 
Back to top
Login to vote
anonymous189

External


Since: Oct 22, 2003
Posts: 25



(Msg. 2) Posted: Thu Nov 06, 2003 1:05 pm
Post subject: Invalid URL when using LOcalHost [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

What is the URL that you are using?

<a style='text-decoration: underline;' href="http://localhost/" target="_blank">http://localhost/</a>

will only work if you have default documents set correctly.
Otherwise:

<a style='text-decoration: underline;' href="http://localhost/" target="_blank">http://localhost/</a>{your page here}.asp

should work.



 >-----Original Message-----
 >I am trying to run some asp pages on my personal
 >computer. Prevoiuslu I was using Windows-98 Personal Web
 >Servier. Now I have Windows XP and I just installed IIS.
 >.. I put the script in C;\inetup\wwwroot. That is the
 >home page of the default web when I go to IIS Adm tools
 >and look at it.
 >
 >When I run from Netscape(4.61), sometimes the script just
 >hangs, other times I get the message Invalid URL.
 >Tried in IE 6.0 and get the same type of message.
 >
 >I downloaded Frontpage 2002 extensions and installed them
 >also.. I am using Frontpage 2000. Would that cause a
 >problem?
 >
 >Need help, have to develop some ASP pages
 >.
 ><!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: Invalid URL when using LOcalHost 
Back to top
Login to vote
someone9

External


Since: Aug 25, 2003
Posts: 2419



(Msg. 3) Posted: Thu Nov 06, 2003 10:46 pm
Post subject: Re: Invalid URL when using LOcalHost [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Does an ASP page containing:
<% Response.Write "Hello World" %>

work?

I mean, are you even sure that your ASP page works?

If you are using FileSystemObject, it may be that you have AntiVirus
programs on your system that is "blocking scripts", which usually causes the
web page to appear "hanged". If that's the case, disable that feature of
your AntiVirus program if you want to use FileSystemObject.

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"wan2fly99@yahoo.com" <anonymous RemoveThis @discussions.microsoft.com> wrote in message
news:039a01c3a45d$7f0b8100$a001280a@phx.gbl...
I am trying to run some asp pages on my personal
computer. Prevoiuslu I was using Windows-98 Personal Web
Servier. Now I have Windows XP and I just installed IIS.
.. I put the script in C;\inetup\wwwroot. That is the
home page of the default web when I go to IIS Adm tools
and look at it.

When I run from Netscape(4.61), sometimes the script just
hangs, other times I get the message Invalid URL.
Tried in IE 6.0 and get the same type of message.

I downloaded Frontpage 2002 extensions and installed them
also.. I am using Frontpage 2000. Would that cause a
problem?

Need help, have to develop some ASP pages
 >> Stay informed about: Invalid URL when using LOcalHost 
Back to top
Login to vote
anonymous356

External


Since: Nov 07, 2003
Posts: 1



(Msg. 4) Posted: Fri Nov 07, 2003 7:27 am
Post subject: Re: Invalid URL when using LOcalHost [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I have tried some simple scripts. Sometime it works
sometimes not. I have Norton, I will dis-able it while
trying to run the script.

Also do I have to give write authority on the directory my
scripts are?

Should I just un-install IIS and then restart from fresh?

When I attached a virtual directory, went to IE 6.0:
type <a style='text-decoration: underline;' href="http://localhost/harry/index.html," target="_blank">http://localhost/harry/index.html,</a> the page came up.

As soon as I did the same thing and just referecned an asp
page, gave me this other message. Will try again tonight
and post the exact message. In Netscape, it didn't even
wwork

Yhanks for the help


 >-----Original Message-----
 >Does an ASP page containing:
 ><% Response.Write "Hello World" %>
 >
 >work?
 >
 >I mean, are you even sure that your ASP page works?
 >
 >If you are using FileSystemObject, it may be that you
have AntiVirus
 >programs on your system that is "blocking scripts", which
usually causes the
 >web page to appear "hanged". If that's the case, disable
that feature of
 >your AntiVirus program if you want to use
FileSystemObject.
 >
 >--
 >//David
 >IIS
 >This posting is provided "AS IS" with no warranties, and
confers no rights.
 >//
 >"wan2fly99@yahoo.com"
<anonymous.DeleteThis@discussions.microsoft.com> wrote in message
 >news:039a01c3a45d$7f0b8100$a001280a@phx.gbl...
 >I am trying to run some asp pages on my personal
 >computer. Prevoiuslu I was using Windows-98 Personal Web
 >Servier. Now I have Windows XP and I just installed IIS.
 >.. I put the script in C;\inetup\wwwroot. That is the
 >home page of the default web when I go to IIS Adm tools
 >and look at it.
 >
 >When I run from Netscape(4.61), sometimes the script just
 >hangs, other times I get the message Invalid URL.
 >Tried in IE 6.0 and get the same type of message.
 >
 >I downloaded Frontpage 2002 extensions and installed them
 >also.. I am using Frontpage 2000. Would that cause a
 >problem?
 >
 >Need help, have to develop some ASP pages
 >
 >
 >.
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Invalid URL when using LOcalHost 
Back to top
Login to vote
Display posts from previous:   
   Web Hosting Problem Solving Community! (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]