> <cfloop from=1 to=5 index=i>
>
>       <cfhttp method=get
>               url="http://www.whatever.com/file#i#.html";
>               path="/somepath/">
>
> </cfloop>

Of course you chould do this..

 <cfloop from=1 to=5 index=i>

        <cfhttp method=get
                url="http://www.whatever.com/file#i#.html";
                path="/somepath/">
        <cffile
                action="write"
                file="file#1#.html"
                output="#cffile.FileContent#">

 </cfloop>



> CFHTTP is supposed to use the filename of the URL in a get
> operation, which it does for the first call. Like

Is it? So it is, I didn't know that! Maybe if you close the tag eg
<cfhttp></cfhttp> ???

Justin


-- 
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

Reply via email to