error with application scope objects
-
hi guys ... i get this error when i put the following code in the application_onStart event of the globals.asa file ... the
set application("objWORK_QUEUE_XSLT") = objXslt
line causes the error ... anyone know the problem? ERROR:Response object, ASP 0185 (0x80020003) A default property was not found for the object.
CODE:'cache xslts dim objXslDoc dim strFilePath dim objXslt set objXslDoc = createObject("Msxml2.FreeThreadedDOMDocument.4.0") objXslDoc.async = false strFilePath = server.mapPath("..\..\xml\workQueue.xslt") objXslDoc.load strFilePath set objXslt = createObject("Msxml2.XSLTemplate.4.0") objXslt.stylesheet = objXslDoc set application("objWORK_QUEUE_XSLT") = objXslt
-
hi guys ... i get this error when i put the following code in the application_onStart event of the globals.asa file ... the
set application("objWORK_QUEUE_XSLT") = objXslt
line causes the error ... anyone know the problem? ERROR:Response object, ASP 0185 (0x80020003) A default property was not found for the object.
CODE:'cache xslts dim objXslDoc dim strFilePath dim objXslt set objXslDoc = createObject("Msxml2.FreeThreadedDOMDocument.4.0") objXslDoc.async = false strFilePath = server.mapPath("..\..\xml\workQueue.xslt") objXslDoc.load strFilePath set objXslt = createObject("Msxml2.XSLTemplate.4.0") objXslt.stylesheet = objXslDoc set application("objWORK_QUEUE_XSLT") = objXslt
Bit of a weird one. This might help[^]. Speaks of
Application("myCompiledStylesheet").stylesheet = xslDoc;
andApplication("myCompiledStylesheet") = Server.CreateObject ("MSXML2.XSLTemplate");
regards, Paul Watson Bluegrass South Africa Miszou wrote: I have read the entire internet. on how boring his day was. Crikey! ain't life grand?