Hiya fellas.
I've encountered a problem and I hope one of you can help me.
I have this simple form that checks if a specific folder exists on a specific drive.
How can I make what's typed in my search box display on my script.asp
My user, would type:d:\data\files and search
MY FORM
<form method="POST" action="script.asp">
<p align="center"> </p>
<p align="center"> <input type="text" name="search" size="25"> </p>
<p align="center"> <input type="submit" value="Search it !" name="B1">
<input type="reset" value="Reset" name="B2"></p>
</form>
MY SCRIPT PAGE
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject"
If fs.FolderExists("d:\data\files" = true Then
Response.Write("Folder d:\data\files exists."
Else
Response.Write("Folder d:\data\files does not exist."
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
)
%>
I've encountered a problem and I hope one of you can help me.
I have this simple form that checks if a specific folder exists on a specific drive.
How can I make what's typed in my search box display on my script.asp
My user, would type:d:\data\files and search
MY FORM
<form method="POST" action="script.asp">
<p align="center"> </p>
<p align="center"> <input type="text" name="search" size="25"> </p>
<p align="center"> <input type="submit" value="Search it !" name="B1">
<input type="reset" value="Reset" name="B2"></p>
</form>
MY SCRIPT PAGE
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject"
If fs.FolderExists("d:\data\files" = true Then
Response.Write("Folder d:\data\files exists."
Else
Response.Write("Folder d:\data\files does not exist."
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
)
%>