Hello everyone. i've been learning a lot here in the past few weeks,
but unfortunately it's not enough for what i need now...

Here it goes:

I have an ASP script wich scans a given directory and returns
information on the files inside it (name, type, size, date last mod,
owner and author). Everything works fine, but now i need a new element
on this - a way to filter the results.

someone i know has told me something about recordsets, but all the info
i can find is about connections with Access databases.

so, i'd like to ask if there is a way to sort my problem out, and if
you know any links or online documentation to do so.


best regards and thanks in advance,

ember

Re: Creating filters over results of an ASP page by Steven

Steven
Sun Sep 10 15:56:28 CDT 2006

<input type="text" name="txtFilter" value="*.txt">

<%
sFilter = Request.Form("txtFilter")
For Each objFile In objFolder.Files
If Split(LCase(objFile.Name), ".") = sFilter Then Response.Write
Server.MapPath(objFile.Path)
Next
%>

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

"ember" <ember.hxc@gmail.com> wrote in message
news:1157920106.086055.122230@p79g2000cwp.googlegroups.com...
> Hello everyone. i've been learning a lot here in the past few weeks,
> but unfortunately it's not enough for what i need now...
>
> Here it goes:
>
> I have an ASP script wich scans a given directory and returns
> information on the files inside it (name, type, size, date last mod,
> owner and author). Everything works fine, but now i need a new element
> on this - a way to filter the results.
>
> someone i know has told me something about recordsets, but all the info
> i can find is about connections with Access databases.
>
> so, i'd like to ask if there is a way to sort my problem out, and if
> you know any links or online documentation to do so.
>
>
> best regards and thanks in advance,
>
> ember
>