11 Dec
2003
11 Dec
'03
11:34 p.m.
Jonathan; Thanks for the suggestion. I guess I wasn't clear enough. The current select field feeds to a button which displays the result, not save it. I need to be able to have a seperate button which is something along the lines of "Save All Results", and then have the app automatically save all of the text files into a user defined local directory. -- Nathan
Try something like:
<select name = dstring size = 20 > <dtml-in "execsearch(REQUEST)" > <option value="<dtml-var name="sequence-item"><dtml-var name="sequence-item"></option> </dtml-in> <option value="all">All</option> </select>
Then, in your form processing routine check for dstring = 'all'
HTH