Error - template LAYOUT-DATA-WRAPPER not found

A configuration error was detected in the CGI script; the LAYOUT-DATA-WRAPPER template could not be found.

Error - template STYLE-SHEET not found

A configuration error was detected in the CGI script; the STYLE-SHEET template could not be found.

Error - template SUB-TOP-BANNER not found

A configuration error was detected in the CGI script; the SUB-TOP-BANNER template could not be found.
Subject:
From:
Reply To:
PCSOFT - Personal Computer software discussion list <[log in to unmask]>
Date:
Mon, 17 May 2004 06:19:36 -0700
Content-Type:
text/plain
Parts/Attachments:
text/plain (52 lines)
From Microsoft : http://support.microsoft.com/default.aspx?scid=kb;EN-US;276011
PRB: Error 800a0035 When You Use the FileSystemObject ObjectView products that this article applies to. This article was previously published under Q276011
SYMPTOMSWhen you use the FileSystemObject object from an Active Server Pages (ASP) page, you may receive one of the following error messages:
Server object error 'ASP 0177 : 800a0035'
Server.CreateObject Failed
filename.asp, line xx
The operation completed successfully.

-or-

Microsoft VBScript runtime (0x800A0035)
File not found
filename.asp, line xx

CAUSEThis error occurs because FileSystemObject cannot find the file that is being accessed (through the OpenTextFile, DeleteFile, or CopyFile methods, for example). This typically occurs for two reasons:

   The file does not exist.
   FileSystemObject is not looking for the file in the folder that you had expected. By default, if you do not specify a path, FileSystemObject searches the WinNT\System32 folder.

RESOLUTIONYou can work around this problem in a few different ways:
   Verify that the file exists before you try to access it. For example:
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")If objFSO.FileExists(Server.MapPath("filename.txt")) Then     'OK to access the file.     Set objFile = objFSO.OpenTextFile(Server.MapPath("filename.txt"),1) Else     'File not found.End If

   Use a fully qualified path and file name. For example:
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")Set objFile = objFSO.OpenTextFile("c:\inetpub\wwwroot\filename.txt",1)

   Use the Server.MapPath method to map the virtual or relative path of the file to the full physical path of the file. For example:
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")Set objFile = objFSO.OpenTextFile(Server.MapPath("filename.txt"),1)


REFERENCESFor additional information on the FileSystemObject object, click the article number below to view the article in the Microsoft Knowledge Base:
197964 PRB: Cannot Access Remote Files with the FileSystemObject


- In the end it looks like it is a coding problem on the web side.  For some reason in the VB code for this site it is trying to refrence a file on your system that does not exist.  However, the webmaster might think it works because that file exists on their system.  Try them again with this KB article and you error messsage.

Bruce Jarrett-Norton


Bruce Jarrett-Norton

Have a good day!
GO STATE!

---------------------------------
Do you Yahoo!?
SBC Yahoo! - Internet access at a great low price.

             PCSOFT maintains many useful files for download
                     visit our download web page at:
                  http://freepctech.com/downloads.shtml

ATOM RSS1 RSS2

LISTSERV.ICORS.ORG Secured by F-Secure Anti-Virus CataList Email List Search Powered by LISTSERV