After working successfully for weeks my pages with CuteEditor ASP stopped working with the folowing error message:
Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid class string
/cuteasp/CuteEditor_Files/include_CuteEditor.asp, line 1315
Line 1315 is:
set doc = server.CreateObject("Microsoft.XMLDOM")
I'm running IIS 5.1 on Windows XP SP 2.
I created a test.asp page with the following:
<%
dim doc
' Create an object to hold the XML
On error resume next
set doc = server.CreateObject("Microsoft.XMLDOM")
if err.number <> 0 then
Response.Write "XMLDOM is not installed. " & err.number
else
Response.Write "XMLDOM IS installed."
end if
%>
It returned XMLDOM is not installed.
I've tried unregistering the different MSXML dll's and then registering them again. Didn't help.
Any help will be greatly appreciated.
Thanks