473,395 Members | 1,474 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

DLL not registered

My PC went under many security patch last week
Yet, I can't use my local IIS ASP web site.
When starting the page, I get the folowing error:
HTTP 500 => from IIS log file i have Login.ASP, Line 6, Error 8002801d, DLL
not registered
In Login.ASP, at line 6 I have Session("XXX") = "YYY".
Same thing with Global.asa in which I have (before removal, just for
testing...) Application("...") = "..."
Looks like internal IIS DLL (ASP.DLL) are not registered anymore.
Can you help since I use my local Web site for commercial demonstrations.

--
Cordialement,
Arnaud MIGEON
SDV Division Auxiliaire de Transport
Rsp. Domaine Commercial / Application Domain Leader
tél. : +33 1 34 21 44 69
fax. : +33 1 34 21 44 90
Parc d'Activité des Bellevues
2, Av. des Bellevues / 25, Av. du Gros Chêne
BP61 - 95610 ERAGNY / OISE
95612 CERGY PONTOISE - FRANCE


Jul 19 '05 #1
7 6878
You wouldn't get an error from an ASP page if ASP wasn't registered. ASP
wouldn't be able to process the page and return the error!

Do you *LITERALLY* have exactly XXX and YYY in those strings, if not please
go to all the trouble of showing us the exact code...


"Arnaud Migeon" <a.******@sdv.com> wrote in message
news:ua**************@TK2MSFTNGP12.phx.gbl...
My PC went under many security patch last week
Yet, I can't use my local IIS ASP web site.
When starting the page, I get the folowing error:
HTTP 500 => from IIS log file i have Login.ASP, Line 6, Error 8002801d, DLL not registered
In Login.ASP, at line 6 I have Session("XXX") = "YYY".
Same thing with Global.asa in which I have (before removal, just for
testing...) Application("...") = "..."
Looks like internal IIS DLL (ASP.DLL) are not registered anymore.
Can you help since I use my local Web site for commercial demonstrations.

--
Cordialement,
Arnaud MIGEON
SDV Division Auxiliaire de Transport
Rsp. Domaine Commercial / Application Domain Leader
tél. : +33 1 34 21 44 69
fax. : +33 1 34 21 44 90
Parc d'Activité des Bellevues
2, Av. des Bellevues / 25, Av. du Gros Chêne
BP61 - 95610 ERAGNY / OISE
95612 CERGY PONTOISE - FRANCE

Jul 19 '05 #2
Sorry

I tried this.

1) Delete existing Global.asa to prevent any ASP page to be proceeded prior.

2) create dummy Test.asp page

<%

Response.Write "This is a test ASP page"

%>

3) Test => it works

4) Update dummy page with

<%

Session("Test") = "Hello"

Response.Write "This is a test ASP page =>" & Session("Test")

%>

5) I have the error:

in french:

error '8002801d'

Bibliothèque non inscrite.

/test.asp, line 2

and from the log

17:25:50 GET /test.asp |2|8002801d|Bibliothèque_non_inscrite.__ 500 0

Same thing if using Application

What do you think about that.

It appears I cannot use Session or Application.
"Foo Man Chew" <fo*@man.chew> a écrit dans le message de news:
uC**************@TK2MSFTNGP11.phx.gbl...
You wouldn't get an error from an ASP page if ASP wasn't registered. ASP
wouldn't be able to process the page and return the error!

Do you *LITERALLY* have exactly XXX and YYY in those strings, if not please go to all the trouble of showing us the exact code...


"Arnaud Migeon" <a.******@sdv.com> wrote in message
news:ua**************@TK2MSFTNGP12.phx.gbl...
My PC went under many security patch last week
Yet, I can't use my local IIS ASP web site.
When starting the page, I get the folowing error:
HTTP 500 => from IIS log file i have Login.ASP, Line 6, Error 8002801d,

DLL
not registered
In Login.ASP, at line 6 I have Session("XXX") = "YYY".
Same thing with Global.asa in which I have (before removal, just for
testing...) Application("...") = "..."
Looks like internal IIS DLL (ASP.DLL) are not registered anymore.
Can you help since I use my local Web site for commercial demonstrations.
--
Cordialement,
Arnaud MIGEON
SDV Division Auxiliaire de Transport
Rsp. Domaine Commercial / Application Domain Leader
tél. : +33 1 34 21 44 69
fax. : +33 1 34 21 44 90
Parc d'Activité des Bellevues
2, Av. des Bellevues / 25, Av. du Gros Chêne
BP61 - 95610 ERAGNY / OISE
95612 CERGY PONTOISE - FRANCE


Jul 19 '05 #3
Hi Arnaud,

You may take a look at following article to see if it will help:

PRB: ASP Error 8002801d "Library Not Registered"
http://support.microsoft.com/default...;EN-US;Q274038

Luke
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Jul 19 '05 #4
Luke,
ASP DO raise an error when trying to store things in Session() or
Application().
This is not linked to Server.CreateObject. I allready went thru all of this
topics..
Is there a tool to REG again DLL that are used by ASP?

--
Cordialement,
Arnaud MIGEON
SDV Division Auxiliaire de Transport
Rsp. Domaine Commercial / Application Domain Leader
tél. : +33 1 34 21 44 69
fax. : +33 1 34 21 44 90
Parc d'Activité des Bellevues
2, Av. des Bellevues / 25, Av. du Gros Chêne
BP61 - 95610 ERAGNY / OISE
95612 CERGY PONTOISE - FRANCE

"MSFT" <lu******@online.microsoft.com> a écrit dans le message de news:
Xr**************@cpmsftngxa07.phx.gbl...
Hi Arnaud,

You may take a look at following article to see if it will help:

PRB: ASP Error 8002801d "Library Not Registered"
http://support.microsoft.com/default...;EN-US;Q274038

Luke
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Jul 19 '05 #5
Arnaud Migeon wrote:
Luke,
ASP DO raise an error when trying to store things in Session() or
Application().
This is not linked to Server.CreateObject. I allready went thru all
of this topics..
Is there a tool to REG again DLL that are used by ASP?

Based on your testing results, it looks as if this has nothing to do with
asp.dll. Your simple asp page would not have run at all if asp.dll was not
registered.

But, given the error occurs when simply trying to set a value to a session
variable, it does appear that something is wrong with your IIS installation.
Have you tried uninstalling and reinstalling IIS?

You may need to get MS PSS involved ...

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '05 #6
Try using Windows authentication and see if an authenticated user can
successfully create session/application variables.

It may be that IUSR lacks permissions to write to memory, or registry,
or...?
"Arnaud Migeon" <a.******@sdv.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Luke,
ASP DO raise an error when trying to store things in Session() or
Application().
This is not linked to Server.CreateObject. I allready went thru all of this topics..
Is there a tool to REG again DLL that are used by ASP?

--
Cordialement,
Arnaud MIGEON
SDV Division Auxiliaire de Transport
Rsp. Domaine Commercial / Application Domain Leader
tél. : +33 1 34 21 44 69
fax. : +33 1 34 21 44 90
Parc d'Activité des Bellevues
2, Av. des Bellevues / 25, Av. du Gros Chêne
BP61 - 95610 ERAGNY / OISE
95612 CERGY PONTOISE - FRANCE

"MSFT" <lu******@online.microsoft.com> a écrit dans le message de news:
Xr**************@cpmsftngxa07.phx.gbl...
Hi Arnaud,

You may take a look at following article to see if it will help:

PRB: ASP Error 8002801d "Library Not Registered"
http://support.microsoft.com/default...;EN-US;Q274038

Luke
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


Jul 19 '05 #7
Will try to ReInstall IIS: Uninstall then Install + SP3 + HotFix IIS.
Will keep in touch.

"Bob Barrows" <re******@NOyahoo.SPAMcom> a écrit dans le message de news:
#V**************@TK2MSFTNGP12.phx.gbl...
Arnaud Migeon wrote:
Luke,
ASP DO raise an error when trying to store things in Session() or
Application().
This is not linked to Server.CreateObject. I allready went thru all
of this topics..
Is there a tool to REG again DLL that are used by ASP?

Based on your testing results, it looks as if this has nothing to do with
asp.dll. Your simple asp page would not have run at all if asp.dll was not
registered.

But, given the error occurs when simply trying to set a value to a session
variable, it does appear that something is wrong with your IIS

installation. Have you tried uninstalling and reinstalling IIS?

You may need to get MS PSS involved ...

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Jul 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Alejandra Parra | last post by:
The application used to work fine, but today, in this code: CType(Me.AxSSTab1, System.ComponentModel.ISupportInitialize).EndInit() ..Net shows the next error: An unhandled exception of type...
4
by: Scott Dillard | last post by:
I have recently been provided with a new laptop. The old one ran Win 2000 with Access 2000 and the new one runs Win XP with Access 2000. When I try to run some of my modules in my old databases on...
1
by: Cristina Malavasi | last post by:
Hi a have a COM dll made in C++ (I don't have the source code) I used tlbimp to create a managed .NET assembly dll... I reference this dll and import it with "using myDll" then I make an object...
3
by: rua17 | last post by:
I add tow Com libraries to my project, I can see their content with intellisense, but when I instantiate a class contained in the library: PDDirectLib.PDDatabaseQuery pDbQuery = new...
1
by: Phre2d | last post by:
We are attempting to move a large development project into the .NET age over time. We have a large number of ATL-based COM objects in this project. Following the "Journal Poster" example provided...
1
by: Jim | last post by:
Have fully operational software package developed on VB.NET that worked until Jan 1 2003, with early stage deployments on Oct 10, Oct 23, Nov 11, Dec 12 and Dec 30. When attempted final...
0
by: Nonee | last post by:
Anyone, anyone? : ) Hello- I have a form with the mediaplayer referenced to play mp3's and avi's and I believe that is what is causing the problem. I am not sure, but I am hoping. ...
13
by: brianbasquille | last post by:
Hello all, Am trying to modify / update the existing open-source OpenHTPC. I've renamed most of the namespaces and some forms (as well as added my own with modifications) and everything works...
9
by: DKn | last post by:
Hi , I am having a .Net Activex control. I have done coding for COMRegistering and Unregistereing in C#.Net. The code is follows.. static void ComRegister(Type t) { ...
0
by: DKn | last post by:
Hi , I am having a .Net Activex control. I have done coding for COMRegistering and Unregistereing in C#.Net. The code is follows.. static void ComRegister(Type t) { ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.