Thanks to Palbano, I was able to make the code below work. Now I'm trying to make the same code, display the contents of the folder found... Thanks in advance.
<%
mySearch = Request("search"

Set fs=Server.CreateObject("Scripting.FileSystemObject"

If fs.FolderExists(mySearch) = false Then
Response.Write("<h1>Folder " & mySearch & " does not exist.</h1>"

Else
Response.Write("<h1>Folder " & mySearch & " exists.</h1>"

End If
set fs=nothing
%>
QUOTE OF THE DAY
The only ideas that will work for you are the ones you put to work.
<%
Jr Clown

%>