re: iframe cfdirectory

2004-03-02 Thread Bushy
Hi, If I put the following cfdirectory outside of the iframe I get the results displayed but if I put it inside the iframe I get nothing. Why? iframe width=100% height=50 cfdirectory action=""> directory=C:\ name=listDirectory sort=name ASC, size DESC cfoutput

Re: iframe cfdirectory

2004-03-02 Thread Ben Doom
Nothing goes inside iframe tags in the current specification.There's a close tag mostly so it looked like frame tags as I understand it. If you want to display something inside an iframe, it has to go on a separate page and be linked in the iframe tag, just like regular frames. --benD Bushy

Re: iframe cfdirectory

2004-03-02 Thread Bushy
ok...I tried using a cflocation url="" within a iframe and that seemed to work. Thanks --Original Message Text--- From: Ben Doom Date: Tue, 02 Mar 2004 09:54:07 -0500 Nothing goes inside iframe tags in the current specification.There's a close tag mostly so it looked like frame tags as I

Re: iframe cfdirectory

2004-03-02 Thread Ben Doom
cflocation should redirect the whole page.You are *not* redirecting the iframe.Check the page source to be sure. iframe is short for inline frame -- it works just like a frame, but can be embedded in non-frameset pages.An iframe is simply a container with a reference to another page. Trust me