This is a strange story.
My ASP pages accessing a SQL Server database had been working fine up to this point. Then as part of the Never-Ending-Update to the servers, a Microsoft Security Patch was installed. I'm still hunting down the exact patch number, but have narrowed it to MS04-015 thru MS04-0024.
After that, when clicking a link to access a dataset, boooom, the following error was generated:
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object
/.../.../.../StatusPage.asp, line 7
The code in that module is:
<% Response.Buffer = True
Page_Title = " Test Status Page"
Page_Ref = "STATS" %>
<!-- #INCLUDE VIRTUAL=".../Includes/FC_Page_Top.inc" -->
<%
dim dbConn
Set dbConn=Server.CreateObject("ADODB.Connection")
I checked the privs on the IUSR_xxx and IWAM_xxx accounts and included them both into the Admins group. I still get the same error.
Does anyone have a suggestion where next to go?????
Thanks.