Main Software ActiveX ASP Source Downloads Android Contact
ASP

Here you can find some FREE usefull Classic ASP / VBScript code snippets, class modules, etc.
I use then myself on most of my projects, so you can rest assured they were optimized over time and are very reliable.
You can use them on your personal or commercial projects.
If you find them usefull to you, please make a donation (nomatter how small) to help me keep this content online for free.


Encode and Decode String File IO Misc
Base-64
HTML2Text
Recaptcha
SHA-1
Text2HTML
Escape
FileNameIn
FileSizeDesc
Format
RemoveTags
BinReadFile
CreateFolder
FileDateTime
FileExists
FileLen
FolderExists
GetFiles
GetFolders
ReadFile
IsValidEmail
SendCDOMail
ScanVar
Function FolderExists(String)Boolean Check if a local folder exists.
Example
<%
if FolderExists("C:\inetpub\www\myfolder") then
   response.write "My folder DOES exist on this server!"
   else
   response.write "Cannot find my folder here..."
   end if
%>


Source Code
<%
Function FolderExists(foldername)
dim fso, folderpath
if mid(foldername,2,1)<>":" and left(foldername,2)<>"\\" then folderpath = Server.MapPath(foldername) else folderpath = foldername
set fso = CreateObject("Scripting.FileSystemObject")
FolderExists = fso.FolderExists(folderpath)
set fso = nothing
End Function
%>