Hello all.
Form MSDN document:<How to Share Session State Between Classic ASP and
ASP.NET>
http://msdn2.microsoft.com/en-us/library/aa479313(printer).aspx
I want try and do something in my project. but, there are some problem.

I have done:
1¡¢Copy "SessionManager.dll" in a FAT32 driver,
and run "regsvr32 SessionManager.dll" result "OK";
2¡¢In registry key:
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SessionMgr.Session2]
[HKEY_CLASSES_ROOT\SessionMgr.Session2]
add "IUSER_XXX" and "everyone" to "FULL CONTROL";
3¡¢Open IIS's ASP support, and close "ASP Session" in site propety;
4¡¢Run SessionState.sql in SQL server manager, create "SessionState" table
in the database;
5¡¢Modify global.asa:
Application("SessionDSN") = "data source=(local);initial
catalog=MyDB;persist security info=False;user id=DBM;password=XXX;packet
size=4096"
The username with password can be login and insert/modify/delete record
in the databse.

But, When I open the page http://localhost/testpage.asp
the result are
------------------------------------------------
Class_Initialize:SessionMgr error '800a01ad'
ActiveX component can't create object
/globalinclude.asp£¬line 3
------------------------------------------------
the file "globalinclude.asp":
************************************************
<%
dim Session
set Session = server.CreateObject("SessionMgr.Session2")
%>
************************************************
Try to add IUSER_XXX to Administrators group,
try to set TEMP=F:\TEMP (F: is a FAT32 driver) is system setting,
but the problem still not fix.

How can I do? Hope you help...
Thank you.

OS:Windows 2003
DB:SQL 2005

---------------------------
Glowing He