Sideway
output.to from Sideway
Draft for Information Only

Content

Folder Object
FolderObject.CreateTextFile Method
  Syntax:
   Parameters:
   Remarks:
   Examples:
FolderObject.Files Collection
  Syntax:
   Parameters:
   Return Values:
   Properties of Collection for VBScript:
   Methods of Enumerator for JScript:
   Remarks:
   Examples:
  Files.Count Property (VBScript)
   Syntax:
   Parameters:
   Return Values:
  Files.Item Property (VBScript)
   Syntax:
   Parameters:
   Return Values:
   Examples:
  FilesEnum.atEnd Method
   Syntax:
   Parameters:
   Return Values:
  FilesEnum.item Method
   Syntax:
   Parameters:
   Return Values:
  FilesEnum.moveFirst Method
   Syntax:
   Parameters:
   Remarks:
  FilesEnum.moveNext Method
   Syntax:
   Parameters:
   Remarks:
   Examples:
FolderObject.ParentFolder Property
  Syntax:
   Parameters:
   Remarks:
   Examples:
FolderObject.SubFolders Collection
  Syntax:
   Parameters:
   Return Values:
   Properties of Collection for VBScript:
   Methods of Enumerator for JScript:
   Remarks:
   Examples:
  Folders.Count Property (VBScript)
   Syntax::
   Parameters::
   Return Values::
  Folders.Item Property (VBScript)
   Syntax::
   Parameters::
   Return Values::
   Examples::
  FoldersEnum.atEnd Method
   Syntax:
   Parameters:
   Return Values::
  FoldersEnum.item Method
   Syntax:
   Parameters::
   Return Values::
  FoldersEnum.moveFirst Method
   Syntax:
   Parameters:
   Remarks::
  FoldersEnum.moveNext Method
   Syntax:
   Parameters:
   Remarks:s:
   Examples:s:

Folder Object

One key function of FileSystemObject Component is the manipulation of folders of the file system.

FolderObject.CreateTextFile Method

FolderObject.CreateTextFile method for folder object is a method to return a TextStream object corresponding to the specified file after creation for text manipulation related to the specified Folder Object.

Syntax:

FolderObjectName.CreateTextFile(filename[,overwrite[, unicode]])

 Or in VBScript. Imply

Set textobjectname=FolderObjectName.CreateTextFile(filename[,overwrite[, unicode]])

 Or in JScript. Imply

textobjectname=FolderObjectName.CreateTextFile(filename[,overwrite[, unicode]])

Parameters:

textobjectname

The parameter "textobjectname" is the name assigned to the instance of the TextStream object returned by the method using the FolderObjectName.CreateTextFile Method after the specified File is created.

FolderObjectName

The parameter "FileSystemObjectName" is used to specify the name of the instance of the Folder Object related to. FileSystemObject object is another possible alternate object of Folder Object for the CreateTextFile Method.

filename

The parameter "filename" is used to specify the path relatived to the specified folder object and file name specification string of the file to be created.

overwrite

The optional parameter "overwrite" is a boolean value used to indicate that the existing file in destination is to be overwritten or not. The default value of parameter overwrite is false. Files are overwritten if the boolean value is true. Files are not overwritten if the boolean value is false.

unicode

The optional parameter "unicode" is a boolean value used to indicate that created file specified in destination is created as a Unicode or ASCII file. The default value of parameter unicode is false. File is created as a Unicode file if the boolean value is true. File is created as an ASCII file if the boolean value is false.

Remarks:

FolderObjectName refers to a Folder Object. And FileSystemObject  object is another possible alternate object of Folder Object for the CreateTextFile Method.

An error occurs if the overwrite parameter is false, or is not provided while the specified file that already exists.

Examples:

  • Example of using the CreateTextFile method to create a specificed text file and open the TextStream object corresponding to the created text file accordingly.

    ASP VBScript command:

    <script runat="server" language="VBScript">
    Dim fso, FolderObjectName, textobjectname
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set FolderObjectName = fso.GetFolder("d:\temp1")
    Set textobjectname = FolderObjectName.CreateTextFile( "\test.txt", True)
    Response.Write textobjectname.line
    textobjectname.Close
    </script>

    HTML web page ouput:

    1

  • Example of using the CreateTextFile method to create a specificed text file and open the TextStream object corresponding to the created text file accordingly.

    ASP JScript command:

    <script runat="server" language="JScript">
    var fso, FolderObjectName, textobjectname;
    fso = new ActiveXObject("Scripting.FileSystemObject");
    FolderObjectName = fso.GetFolder("d:\\temp1")
    textobjectname = FolderObjectName.CreateTextFile("\\test.txt", "True");
    Response.Write(textobjectname.line + "<br />");
    textobjectname.Close();
    </script>

    HTML web page ouput:

    1

FolderObject.Files Collection

FolderObject.Files collection for folder object is used to return the collection of all File objects including those files objects with hidden and system file attributes set available in the specified Folder Object.

Syntax:

FolderObjectName.Files

 Or in VBScript. Imply

Set filecollectionname=FolderObjectName.Files

 Or in JScript. Imply

filecollectionname=FolderObjectName.Files

Parameters:

filecollectionname

The parameter "filecollectionname" is the name assigned to the instance of the Files collection returned by the Collection Property using the FolderObjectName.Files Property.

FolderObjectName

The parameter "FileSystemObjectName" is used to specify the name of the instance of the Folder Object related to. FileSystemObject object is another possible alternate object of Folder Object for the CreateTextFile Method.

Return Values:

Files collection

The property returns a Collection of all available File objects related to the specified Folder Object. 

Properties of Collection for VBScript:

Property Description
Count a read only property to return the number of items in the Files collection.
Item to return an item corresponding to the specified key.

Methods of Enumerator for JScript:

Method Description
atEnd to check whether the enumerator is at the end of the collection
Item to return the current item of the File object in the enumerator of the Files collection.
moveFirst to reset the location of current item in the enumerator of the collection to the first item in the enumerator of the collection
moveNext to move the location of current item in the enumerator of the collection to the next item in the enumerator of the collection

Remarks:

FolderObjectName refers to a Folder Object.

Examples:

  • Example of using the Files property to return the collection of Files object contained in the specified folder.

    ASP VBScript command::

    <script runat="server" language="VBScript">
    Dim fso, FolderObjectName, filecollectionname
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set FolderObjectName = fso.GetFolder("d:\temp1")
    Set filecollectionname = FolderObjectName.Files
    Response.Write filecollectionname.Count
    </script>

    HTML web page ouput:

    4

  • Example of using the Files property to return the collection of Files object contained in the specified folder.

    ASP JScript command:

    <script runat="server" language="JScript">
    var fso, FolderObjectName, filecollectionname;
    fso = new ActiveXObject("Scripting.FileSystemObject");
    FolderObjectName = fso.GetFolder("d:\\temp1")
    filecollectionname= new Enumerator(FolderObjectName.Files);
    </script>

    HTML web page ouput:

     

Files.Count Property (VBScript)

Files.Count Property of FolderObject.Files Collection is a read only property used to return the number of file objects in the specified FolderObject.Files collection  related to the specified folder object. 

Syntax:

FilesCollectionName.Count

 Or in VBScript. Imply

FilesCollectionName.Count

Parameters:

FilesCollectionName

The parameter "FilesCollectionName" is used to specify the name of the instance of the Files Collection related to.

Return Values:

Number of File Objects

The property returns the number of file objects included in the specified Files Collections.

Files.Item Property (VBScript)

Files.Item Property of FolderObject.files Collection is used to return a File object in the FolderObject.Files collection corresponding to the specified key in the specified Folder.Files collection related to the specified Folder object.

Syntax:

FilesCollectionName.Item(key)

 Or in VBScript. Imply

FilesCollectionName.Item(key)

Parameters:

FilesCollectionName

The parameter "FilesCollectionName" is used to specify the name of the instance of the Files Collection related to.

Return Values:

 File Object

The property returns a File object corresponding to the specified key in the specified Files Collection. 

Examples:

  • Example of using the Files property to return the Count and Item properties an collection of all "File" objects available

    ASP VBScript command::

    <script runat="server" language="VBScript">
    Dim fso, FolderObjectName, filescollectionname, fileo
    Set fso = CreateObject("Scripting.FileSystemObject") eSystemObject")
    Set FolderObjectName = fso.GetFolder("d:\temp1")
    Set filescollectionname = FolderObjectName.Files
    Response.Write filescollectionname.count & "<br>"
    For Each fileo in filescollectionname
    Response.Write fileo.name &"<br>"
    Next
    Response.Write "<br>"
    Response.Write filescollectionname.item("test.txt").name
    </script>

    HTML web page ouput:

    3
    test.7z
    test.txt
    test1.txt

    test.txt

FilesEnum.atEnd Method

FilesEnum.atEnd Method of the Enumerator of FolderObject.Files Collection is used to check whether the enumerator is at the end of the colloection and returns a Boolean true value to indicate the Enumerator is at the end of the enumerator of the specified Folder.Files collection related to the specified Folder object. 

Syntax:

FilesEnumName.atEnd

 Or in JScript. Imply

FilesEnumName.atEnd

Parameters:

FilesEnumName

The parameter "FilesEnumName" is used to specify the name of the instance of the Files Enumerator related to.

Return Values:

Boolean

The method returns a Boolean true value to indicate the specified enumerator is at the end of the enumerator of the specified folderObject.files collection. A Boolean false value indicates that  the specified enumerator is not  at the end of the enumerator or the enumerator of the collection is empty.

FilesEnum.item Method

FilesEnum.item Method of the Enumerator of FolderObject.Files Collection is used to return the current item of the File object in the specified enumerator of the Files collection corresponding to the specified FolderObject.Files Collection related to the specified Folder object.

Syntax:

FilesEnumName.item

 Or in JScript. Imply

 FilesEnumName.item

Parameters:

FilesEnumName

The parameter "FilesEnumName" is used to specify the name of the instance of the Files Enumerator related to.

Return Values:

File object

The method returns the current item of the File object in the specified enumerator of the Files collection corresponding to the specified FolderObject.Files Collection related to the specified Folder object. The return values is "undefined" if the enumerator of the collection is empty or the current item is undefined.

FilesEnum.moveFirst Method

FilesEnum.moveFirst Method of the Enumerator of FolderObject.Files Collection is used to reset the location of the current item of the File object to the first item in the specified enumerator of the Files collection corresponding to the specified FolderObject.Files Collection related to the specified Folder object.

Syntax:

FilesEnumName.moveFirst

 Or in JScript. Imply

FilesEnumName.moveFirst

Parameters:

FilesEnumName

The parameter "FilesEnumName" is used to specify the name of the instance of the Files Enumerator related to.

Remarks:

The method reset the location of the current item of the specified enumerator to the first item of the specified enumerator of the Files collection corresponding to the specified FolderObject.Files Collection related to the specified Folder object. If there is no item in the collection, the current item is set to undefined.

FilesEnum.moveNext Method

FilesEnum.moveNext Method of the Enumerator of FolderObject.Files Collection is used to move the location of the current item of the File object to the next item in the specified enumerator of the Files collection corresponding to the specified FolderObject.Files Collection related to the specified Folder object.

Syntax:

FilesEnumName.moveNext

 Or in JScript. Imply

 FilesEnumName.moveNext

Parameters:

FilesEnumName

The parameter "FilesEnumName" is used to specify the name of the instance of the Files Enumerator related to.

Remarks:

The method move the location of the current item of the specified enumerator to the next item of the specified enumerator of the Files collection corresponding to the specified FolderObject.Files Collection related to the specified Folder object. If there is no item or no more item in the collection, the current item is set to undefined.

Examples:

  • Example of using methods of the Enumerator of  a Files collection to return the File properties of  an collection of all "File" objects available

    ASP JScript command:

    <script runat="server" language="JScript">
    var fso, FolderObjectName, filese;
    fso = new ActiveXObject("Scripting.FileSystemObject");
    FolderObjectName = fso.GetFolder("d:\\temp1");
    filese = new Enumerator(FolderObjectName.Files);
    for (; !filese.atEnd(); filese.moveNext()) {
    fileo = filese.item();
    filese.moveNext;
    Response.Write(fileo.Name +"<br>") 
    }
    filese.moveFirst(); filese.moveNext(); filese.moveNext();
    Response.Write ("<br>")
    Response.Write(filese.item().Name)
    </script>

    HTML web page ouput:

    test.7z
    test.txt
    test1.txt

    test1.txt

FolderObject.ParentFolder Property

FolderObject.ParentFolder property for folder object is a read-only property to return a folder object corresponding to the parent folder of the specified Folder Object.

Syntax:

FolderObjectName.PartentFolder

 Or in VBScript. Imply

Set parentfoldername=FolderObjectName.PartentFolder

 Or in JScript. Imply

parentfoldername=FolderObjectName.PartentFolder

Parameters:

parentfoldername

The parameter "parentfoldername" is the name assigned to the instance of the Folder object returned by the property using the FolderObjectName.ParentFolder property related to the specified Folder object.

FolderObjectName

The parameter "FolderObjectName" is used to specify the name of the instance of the Folder Object related to. File object is another possible alternate object of Folder Object for the ParentFolder property.

Remarks:

FolderObjectName refers to a Folder Object. And File object is another possible alternate object of Folder Object for the ParentFolder Property.

Examples:

  • Example of using the ParentFolder property to create an instance of folder object of the parent of the specificed folder object.

    ASP VBScript command:

    <script runat="server" language="VBScript">
    Dim fso, FolderObjectName, parentfoldername
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set FolderObjectName = fso.GetFolder("d:\temp1\new")
    Set parentfoldername  = FolderObjectName.ParentFolder
    Response.Write parentfoldername.Name
    </script>

    HTML web page ouput:

    temp1

  • Example of using the ParentFolder property to create an instance of folder object of the parent of the specificed folder object.

    ASP JScript command:

    <script runat="server" language="JScript">
    var fso, FolderObjectName, parentfoldername;
    fso = new ActiveXObject("Scripting.FileSystemObject");
    FolderObjectName = fso.GetFolder("d:\\temp1\\new")
    parentfoldername = FolderObjectName.ParentFolder;
    Response.Write(parentfoldername.Name + "<br />");
    </script>

    HTML web page ouput:

    temp1

FolderObject.SubFolders Collection

FolderObject.SubFolders collection for folder object is used to return the collection of all subfolders objects including those files objects with hidden and system file attributes set available in the specified Folder Object.

Syntax:

FolderObjectName.SubFolders

 Or in VBScript. Imply

Set foldercollectionname=FolderObjectName.Folders

 Or in JScript. Imply

foldercollectionname=FolderObjectName.Folders

Parameters:

foldercollectionname

The parameter "foldercollectionname" is the name assigned to the instance of the Folders collection returned by the Collection Property using the FolderObjectName.Folders Property.

FolderObjectName

The parameter "FileSystemObjectName" is used to specify the name of the instance of the Folder Object related to. FileSystemObject object is another possible alternate object of Folder Object for the CreateTextFile Method.

Return Values:

Folders collection

The property returns a Collection of all available sub-Folder objects contained in the specified Folder Object. 

Properties of Collection for VBScript:

Property Description
Count a read only property to return the number of items in the Folders collection.
Item to return an item corresponding to the specified key.

Methods of Enumerator for JScript:

Method Description
atEnd to check whether the enumerator is at the end of the collection
Item to return the current item of the Folder object in the enumerator of the Folders collection.
moveFirst to reset the location of current item in the enumerator of the collection to the first item in the enumerator of the collection
moveNext to move the location of current item in the enumerator of the collection to the next item in the enumerator of the collection

Remarks:

FolderObjectName refers to a Folder Object.

The ActiveXObject object (JScript) and CreateObject function (VBScript) enable and return a reference to an Automation object.

Examples:

  • Example of using the SubFolders property to return the collection of Folders object contained in the specified folder.

    ASP VBScript command::

    <script runat="server" language="VBScript">
    Dim fso, FolderObjectName, subfoldercollectionname
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set FolderObjectName = fso.GetFolder("d:\temp1")
    Set subfoldercollectionname = FolderObjectName.SubFolders
    Response.Write subfoldercollectionname.Count
    </script>

    HTML web page ouput:

    1

  • Example of using the SubFolders property to return the collection of Folders object contained in the specified folder.

    ASP JScript command:

    <script runat="server" language="JScript">
    var fso, FolderObjectName, subfoldercollectionname;
    fso = new ActiveXObject("Scripting.FileSystemObject");
    FolderObjectName = fso.GetFolder("d:\\temp1")
    subfoldercollectionname= new Enumerator(FolderObjectName.Subfolders);
    </script>

    HTML web page ouput:

     

Folders.Count Property (VBScript)

Folders.Count Property of FolderObject.SubFolders Collection is a read only property used to return the number of file objects in the specified FolderObject.SubFolders collection  related to the specified folder object. 

Syntax::

FoldersCollectionName.Count

 Or in VBScript. Implyy

FoldersCollectionName.Count

Parameters::

FoldersCollectionName

The parameter "FoldersCollectionName" is used to specify the name of the instance of the Folders Collection related to.

Return Values::

Number of Folder Objects

The property returns the number of sub folder objects included in the specified Folders Collections.

Folders.Item Property (VBScript)

Folders.Item Property of FolderObject.Subfolders Collection is used to return a Folder object in the FolderObject.SubFolders collection corresponding to the specified key in the specified Folder.SubFolders collection related to the specified Folder object.

Syntax::

FoldersCollectionName.Item(key)

 Or in VBScript. Implyy

FoldersCollectionName.Item(key)

Parameters::

FoldersCollectionName

The parameter "FoldersCollectionName" is used to specify the name of the instance of the Folders Collection related to.

Return Values::

 Folder Object

The property returns a Folder object corresponding to the specified key in the specified Folders Collection. 

Examples::

  • Example of using the Folders property to return the Count and Item properties an collection of all "Folder" objects available

    ASP VBScript command:::

    <script runat="server" language="VBScript">
    Dim fso, FolderObjectName, folderscollectionname, foldero
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set FolderObjectName = fso.GetFolder("d:\temp1"))
    Set folderscollectionname = FolderObjectName.SubFolders
    Response.Write folderscollectionname.count & "<br>"
    For Each foldero in folderscollectionname
    Response.Write foldero.name &"<br>"
    Next
    Response.Write "<br>"
    Response.Write folderscollectionname.item("new").name
    </script>;

    HTML web page ouput:

    1
    new

    new

FoldersEnum.atEnd Method

FoldersEnum.atEnd Method of the Enumerator of FolderObject.SubFolders Collection is used to check whether the enumerator is at the end of the colloection and returns a Boolean true value to indicate the Enumerator is at the end of the enumerator of the specified Folder.SubFolders collection related to the specified Folder object. 

Syntax:

SubFoldersEnumName.atEnd

 Or in JScript. Imply

SubFoldersEnumName.atEnd

Parameters:

SubFoldersEnumName

The parameter "SubFoldersEnumName" is used to specify the name of the instance of the Folders Enumerator related to.

Return Values::

Boolean

The method returns a Boolean true value to indicate the specified enumerator is at the end of the enumerator of the specified folderObject.subfolders collection. A Boolean false value indicates that  the specified enumerator is not  at the end of the enumerator or the enumerator of the collection is empty.

FoldersEnum.item Method

FoldersEnum.item Method of the Enumerator of FolderObject.subFolders Collection is used to return the current item of the Folder object in the specified enumerator of the SubFolders collection corresponding to the specified FolderObject.SubFolders Collection related to the specified Folder object.

Syntax:

SubFoldersEnumName.item

 Or in JScript. Implyy

 SubFoldersEnumName.item

Parameters::

FilesEnumName

The parameter "SubFoldersEnumName" is used to specify the name of the instance of the Folders Enumerator related to.

Return Values::

Folder object

The method returns the current item of the Folder object in the specified enumerator of the subFolders collection corresponding to the specified FolderObject.SubFolders Collection related to the specified Folder object. The return values is "undefined" if the enumerator of the collection is empty or the current item is undefined.

FoldersEnum.moveFirst Method

FoldersEnum.moveFirst Method of the Enumerator of FolderObject.SubFolders Collection is used to reset the location of the current item of the Folder object to the first item in the specified enumerator of the SubFolders collection corresponding to the specified FolderObject.SubFolders Collection related to the specified Folder object.

Syntax:

SubFoldersEnumName.moveFirst

 Or in JScript. Imply

SubFoldersEnumName.moveFirst

Parameters:

SubFoldersEnumName

The parameter "SubFoldersEnumName" is used to specify the name of the instance of the SubFolders Enumerator related to.

Remarks::

The method reset the location of the current item of the specified enumerator to the first item of the specified enumerator of the SubFolders collection corresponding to the specified FolderObject.SubFolders Collection related to the specified Folder object. If there is no item in the collection, the current item is set to undefined.

FoldersEnum.moveNext Method

FoldersEnum.moveNext Method of the Enumerator of FolderObject.SubFolders Collection is used to move the location of the current item of the Folder object to the next item in the specified enumerator of the SubFolders collection corresponding to the specified FolderObject.SubFolders Collection related to the specified Folder object.

Syntax:

SubFoldersEnumName.moveNext

 Or in JScript. Implyly

 SubFoldersEnumName.moveNext

Parameters:

SubFoldersEnumName

The parameter "SubFoldersEnumName" is used to specify the name of the instance of the SubFolders Enumerator related to.

Remarks:s:

The method move the location of the current item of the specified enumerator to the next item of the specified enumerator of the SubFolders collection corresponding to the specified FolderObject.SubFolders Collection related to the specified Folder object. If there is no item or no more item in the collection, the current item is set to undefined.

Examples:s:

  • Example of using methods of the Enumerator of  a SubFolder collection to return the Folder properties of  an collection of all "Folder" objects available

    ASP JScript command:d:

    <script runat="server" language="JScript">
    var fso, FolderObjectName, subfolders, foldero;
    fso = new ActiveXObject("Scripting.FileSystemObject");
    FolderObjectName = fso.GetFolder("d:\\temp1");
    subfolders = new Enumerator(FolderObjectName.SubFolders);
    for (; !subfolders.atEnd(); subfolders.moveNext()) {
    foldero = subfolders.item();
    subfolders.moveNext;
    Response.Write(foldero.Name +"<br>") 
    }
    subfolders.moveFirst();
    Response.Write ("<br>")
    Response.Write(subfolders.item().Name)
    </script>

    HTML web page ouput:t:

    new

    new


©sideway

ID: 130500008 Last Updated: 5/11/2013 Revision: 0 Ref:

close

References

  1. Active Server Pages,  , http://msdn.microsoft.com/en-us/library/aa286483.aspx
  2. ASP Overview,  , http://msdn.microsoft.com/en-us/library/ms524929%28v=vs.90%29.aspx
  3. ASP Best Practices,  , http://technet.microsoft.com/en-us/library/cc939157.aspx
  4. ASP Built-in Objects,  , http://msdn.microsoft.com/en-us/library/ie/ms524716(v=vs.90).aspx
  5. Response Object,  , http://msdn.microsoft.com/en-us/library/ms525405(v=vs.90).aspx
  6. Request Object,  , http://msdn.microsoft.com/en-us/library/ms524948(v=vs.90).aspx
  7. Server Object (IIS),  , http://msdn.microsoft.com/en-us/library/ms525541(v=vs.90).aspx
  8. Application Object (IIS),  , http://msdn.microsoft.com/en-us/library/ms525360(v=vs.90).aspx
  9. Session Object (IIS),  , http://msdn.microsoft.com/en-us/library/ms524319(8v=vs.90).aspx
  10. ASPError Object,  , http://msdn.microsoft.com/en-us/library/ms524942(v=vs.90).aspx
  11. ObjectContext Object (IIS),  , http://msdn.microsoft.com/en-us/library/ms525667(v=vs.90).aspx
  12. Debugging Global.asa Files,  , http://msdn.microsoft.com/en-us/library/aa291249(v=vs.71).aspx
  13. How to: Debug Global.asa files,  , http://msdn.microsoft.com/en-us/library/ms241868(v=vs.80).aspx
  14. Calling COM Components from ASP Pages,  , http://msdn.microsoft.com/en-us/library/ms524620(v=VS.90).aspx
  15. IIS ASP Scripting Reference,  , http://msdn.microsoft.com/en-us/library/ms524664(v=vs.90).aspx
  16. ASP Keywords,  , http://msdn.microsoft.com/en-us/library/ms524672(v=vs.90).aspx
  17. Creating Simple ASP Pages,  , http://msdn.microsoft.com/en-us/library/ms524741(v=vs.90).aspx
  18. Including Files in ASP Applications,  , http://msdn.microsoft.com/en-us/library/ms524876(v=vs.90).aspx
  19. ASP Overview,  , http://msdn.microsoft.com/en-us/library/ms524929(v=vs.90).aspx
  20. FileSystemObject Object,  , http://msdn.microsoft.com/en-us/library/z9ty6h50(v=vs.84).aspx
  21. http://msdn.microsoft.com/en-us/library/windows/desktop/ms675944(v=vs.85).aspx,  , ADO Object Model
  22. ADO Fundamentals,  , http://msdn.microsoft.com/en-us/library/windows/desktop/ms680928(v=vs.85).aspx
close

Latest Updated LinksValid XHTML 1.0 Transitional Valid CSS!Nu Html Checker Firefox53 Chromena IExplorerna
IMAGE

Home 5

Business

Management

HBR 3

Information

Recreation

Hobbies 8

Culture

Chinese 1097

English 339

Reference 79

Computer

Hardware 249

Software

Application 213

Digitization 32

Latex 52

Manim 205

KB 1

Numeric 19

Programming

Web 289

Unicode 504

HTML 66

CSS 65

SVG 46

ASP.NET 270

OS 429

DeskTop 7

Python 72

Knowledge

Mathematics

Formulas 8

Algebra 84

Number Theory 206

Trigonometry 31

Geometry 34

Coordinate Geometry 2

Calculus 67

Complex Analysis 21

Engineering

Tables 8

Mechanical

Mechanics 1

Rigid Bodies

Statics 92

Dynamics 37

Fluid 5

Fluid Kinematics 5

Control

Process Control 1

Acoustics 19

FiniteElement 2

Natural Sciences

Matter 1

Electric 27

Biology 1

Geography 1


Copyright © 2000-2024 Sideway . All rights reserved Disclaimers last modified on 06 September 2019