|
Home > Archive > IIS Server > September 2004 > Service Packs
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| George 2004-09-27, 5:55 pm |
| Hi everyone.
Does anybody know wich service pack should I have
installed on my pc to be able to browse asp pages?
I actually have service pack 4 on my pc, but I can't run
asp pages.
Does there exist connection between the service packs'
version and the asp pages?
PD.My OS is Windows 2000 advanced server
Thank's 4 ur help :O)
| |
| Jeff Cochran 2004-09-27, 5:55 pm |
| On Mon, 27 Sep 2004 09:32:24 -0700, "George"
<anonymous@discussions.microsoft.com> wrote:
>Does anybody know wich service pack should I have
>installed on my pc to be able to browse asp pages?
None. From either client or server side.
>I actually have service pack 4 on my pc, but I can't run
>asp pages.
Bummer. That "can't run" error is the toughest to diagnose. It's not
like those where you have an actual error message in the browser or
event log, so you pretty much have to just wail away at anything and
hope it fixes it.
>Does there exist connection between the service packs'
>version and the asp pages?
No.
>PD.My OS is Windows 2000 advanced server
>Thank's 4 ur help :O)
If you really want help, you'll need to post the error or at least
tell us what the heck "can't run" actually means. For all we know you
"can't run" ASP because you leave the server turned off and in a
closet.
Jeff
| |
|
|
On my browser (IE) appears the following message error=20
when I try to see an ASP page.
error '8002801d'=20
Not registered Library
/gest2/ejant/recibir2.asp, line 5=20
I tried so many ways to resolve this problem but I=20
couldn=B4t. So I think the best thing I should do is to=20
reinstall all the components on my pc (including the OS).
eje2.asp :
<%Option Explicit%>
<html>
<head>
</head>
<body>
<form method=3D"post" action=3D"recibir2.asp">
<p>Nombre: <input type=3D"text" name=3D"name"=20
size=3D"20"></p>
<p>Nacionalidad: <input type=3D"text" name=3D"from"=20
size=3D"20"></p>
<p> <input type=3D"submit" value=3D"Enviar"=20
name=3D"Enviar"></p>
</form>
</body>
</html>
recibir2.asp:
<%Option Explicit%>
<html>
<head></head>
<body>
Name : <%=3Drequest.form("name")%><br>
You are from: <%=3Drequest.form("from")%>
</body>
</html>
| |
| Bernard 2004-09-28, 3:29 am |
| Try -
PRB: ASP Error 8002801d "Library Not Registered"
http://support.microsoft.com/?id=274038
--
Regards,
Bernard Cheah
http://www.tryiis.com/
http://support.microsoft.com/
http://www.msmvps.com/bernard/
<anonymous@discussions.microsoft.com> wrote in message
news:2f0d01c4a4b7$8336beb0$a301280a@phx.gbl...
On my browser (IE) appears the following message error
when I try to see an ASP page.
error '8002801d'
Not registered Library
/gest2/ejant/recibir2.asp, line 5
I tried so many ways to resolve this problem but I
couldnīt. So I think the best thing I should do is to
reinstall all the components on my pc (including the OS).
eje2.asp :
<%Option Explicit%>
<html>
<head>
</head>
<body>
<form method="post" action="recibir2.asp">
<p>Nombre: <input type="text" name="name"
size="20"></p>
<p>Nacionalidad: <input type="text" name="from"
size="20"></p>
<p> <input type="submit" value="Enviar"
name="Enviar"></p>
</form>
</body>
</html>
recibir2.asp:
<%Option Explicit%>
<html>
<head></head>
<body>
Name : <%=request.form("name")%><br>
You are from: <%=request.form("from")%>
</body>
</html>
|
|
|
|
|