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

IIS does not support ASP - Help please

 
   Web Hosting Problem Solving Community! (Home) -> IIS RSS
Next:  IIS 5 + ASP.NET + SUS 1.0 SP1 = unable to run &am..  
Author Message
kapenev

External


Since: May 01, 2004
Posts: 2



(Msg. 1) Posted: Sun May 02, 2004 2:20 am
Post subject: IIS does not support ASP - Help please
Archived from groups: microsoft>public>inetserver>iis (more info?)

When I publish from FP 2002 to IIS, I get the following message
"The following pages in your Web are Active Server Pages (ASP). They will
not work because the server you are publishing to does not support ASP.

To enable these pages, publish your Web to a Web server that supports Active
Server Pages."

When I link to the .asp page in a browser, IE6 gives me the following error
message
"HTTP 500.100 - Internal Server Error - ASP error
Internet Information Services
----------------------------------------------------------------------------
----

Technical Information (for support personnel)

a.. Error Type:
Active Server Pages, ASP 0134 (0x80004005)
The object has an invalid ProgID of 'MSWC.MyInfo'.
//global.asa, line 82

Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)


b.. Page:
GET /Catalogue.asp

c.. Time:
Saturday, May 01, 2004, 11:19:39 PM
Any help you can give me would be greatly appreciated.

Thanks you,
Vance, New Zealand.

 >> Stay informed about: IIS does not support ASP - Help please 
Back to top
Login to vote
jmaltz

External


Since: Aug 22, 2003
Posts: 710



(Msg. 2) Posted: Sun May 02, 2004 2:20 am
Post subject: Re: IIS does not support ASP - Help please [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi,

What OS and IIS version are you publishing to?

What happens if you try a hello world ASP page?
<HTML>
<HEAD>
<TITLE>Hello, World !</TITLE>
</HEAD>
<BODY>
<%
Response.Write "Hello, World!"
%>
</BODY>
</HTML>

--
--Jonathan Maltz [Microsoft MVP - Windows Server, Virtual PC]
<a style='text-decoration: underline;' href="http://www.visualwin.com" target="_blank">http://www.visualwin.com</a> - A Windows Server 2003 visual, step-by-step
tutorial site Smile
<a style='text-decoration: underline;' href="http://vpc.visualwin.com" target="_blank">http://vpc.visualwin.com</a> - Does <insert OS name> work on VPC 2004? Find out
here
Only reply by newsgroup. I do not do technical support via email. Any
emails I have not authorized are deleted before I see them.


"Vance Kapene" <kapenev.RemoveThis@xtra.co.nz> wrote in message
news:OGVTf52LEHA.2012@TK2MSFTNGP11.phx.gbl...
 > When I publish from FP 2002 to IIS, I get the following message
 > "The following pages in your Web are Active Server Pages (ASP). They will
 > not work because the server you are publishing to does not support ASP.
 >
 > To enable these pages, publish your Web to a Web server that supports
Active
 > Server Pages."
 >
 > When I link to the .asp page in a browser, IE6 gives me the following
error
 > message
 > "HTTP 500.100 - Internal Server Error - ASP error
 > Internet Information Services
 > --------------------------------------------------------------------------
--
 > ----
 >
 > Technical Information (for support personnel)
 >
 > a.. Error Type:
 > Active Server Pages, ASP 0134 (0x80004005)
 > The object has an invalid ProgID of 'MSWC.MyInfo'.
 > //global.asa, line 82
 >
 > Browser Type:
 > Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
 >
 >
 > b.. Page:
 > GET /Catalogue.asp
 >
 > c.. Time:
 > Saturday, May 01, 2004, 11:19:39 PM
 > Any help you can give me would be greatly appreciated.
 >
 > Thanks you,
 > Vance, New Zealand.
 >
 ><!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: IIS does not support ASP - Help please 
Back to top
Login to vote
hesterloli

External


Since: Aug 22, 2003
Posts: 151



(Msg. 3) Posted: Sun May 02, 2004 2:20 am
Post subject: Re: IIS does not support ASP - Help please [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Just comment that call to the Server.CreateObject(MSWC.MyInfo") in your =
Global.asa. You could actually rename the file to global.as_ and ASP =
should work. You will have trouble with Session state though.

In Session_OnStart put this instead:

Set BC =3D Server.CreateObject("MSWC.BrowserType")

--=20
George Hester
__________________________________
"Vance Kapene" <kapenev DeleteThis @xtra.co.nz> wrote in message =
news:OGVTf52LEHA.2012@TK2MSFTNGP11.phx.gbl...
 > When I publish from FP 2002 to IIS, I get the following message
 > "The following pages in your Web are Active Server Pages (ASP). They =
will
 > not work because the server you are publishing to does not support =
ASP.
 >=20
 > To enable these pages, publish your Web to a Web server that supports =
Active
 > Server Pages."
 >=20
 > When I link to the .asp page in a browser, IE6 gives me the following =
error
 > message
 > "HTTP 500.100 - Internal Server Error - ASP error
 > Internet Information Services
 > =
-------------------------------------------------------------------------=
---
 > ----
 >=20
 > Technical Information (for support personnel)
 >=20
 > a.. Error Type:
 > Active Server Pages, ASP 0134 (0x80004005)
 > The object has an invalid ProgID of 'MSWC.MyInfo'.
 > //global.asa, line 82
 >=20
 > Browser Type:
 > Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
 >=20
 >=20
 > b.. Page:
 > GET /Catalogue.asp
 >=20
 > c.. Time:
 > Saturday, May 01, 2004, 11:19:39 PM
 > Any help you can give me would be greatly appreciated.
 >=20
 > Thanks you,
 > Vance, New Zealand.
 >=20
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: IIS does not support ASP - Help please 
Back to top
Login to vote
kapenev

External


Since: May 01, 2004
Posts: 2



(Msg. 4) Posted: Sun May 02, 2004 3:50 pm
Post subject: Thank you both! [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Each of your suggestions were helpful. I renamed global.asa with the
extension .as_ and used the "Hello, World" page to test it.
I have created an MS Access Database to record the hundreds of CD's we have
(Data, Music, Programs etc), and IIS now lets me use a searchable database
across our Home Intranet. It is unlikely that I will use any very advanced
features.
Thanks also for being so polite to a newbie.

Kind regards,
Vance, New Zealand.

"Vance Kapene" <kapenev.RemoveThis@xtra.co.nz> wrote in message
news:OGVTf52LEHA.2012@TK2MSFTNGP11.phx.gbl...
 > When I publish from FP 2002 to IIS, I get the following message
 > "The following pages in your Web are Active Server Pages (ASP). They will
 > not work because the server you are publishing to does not support ASP.
 >
 > To enable these pages, publish your Web to a Web server that supports
Active
 > Server Pages."
 >
 > When I link to the .asp page in a browser, IE6 gives me the following
error
 > message
 > "HTTP 500.100 - Internal Server Error - ASP error
 > Internet Information Services
 > --------------------------------------------------------------------------
--
 > ----
 >
 > Technical Information (for support personnel)
 >
 > a.. Error Type:
 > Active Server Pages, ASP 0134 (0x80004005)
 > The object has an invalid ProgID of 'MSWC.MyInfo'.
 > //global.asa, line 82
 >
 > Browser Type:
 > Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
 >
 >
 > b.. Page:
 > GET /Catalogue.asp
 >
 > c.. Time:
 > Saturday, May 01, 2004, 11:19:39 PM
 > Any help you can give me would be greatly appreciated.
 >
 > Thanks you,
 > Vance, New Zealand.
 >
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: IIS does not support ASP - Help please 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
IIS 6.0 OS Support - Can anyone please let me know whether IIS 6.0 can run on Windows 2000 Server? Or Please point me to a page where I can find the supported platforms matrix for IIS 6.0

Does IIS support FTP over SSL? - I've already been told by a 3rd party that IIS doesn't support this - but I have to ask anyway: Does IIS 5.0 or 6.0 support: a) Explicit FTP over SSL? b) Implicit FTP over SSL (port 990) ? If it does, then how to you import/generate the certificates..

JSP support? - Does IIS supports JSP pages?

XML support on IIS 4.0 - Dear experts, I am trying to apply a XSL on a XML file on the server using ASP. However, I found that the IIS 4.0 seems not yet have a proper component to work it out. So, I would like to seek help from any of you. Is there any component can be..

Does PWS support ASP.NET? - In the last six months, I have tried every possible thing to get my IIS 5.5 running on my Windows XP Prpfessional box so that I can develop ASP.NET applications on my computer. In the last few hours of trying, I have realized that something is wrong with...
   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 ]