Hey Brian When you do CFCONTENT you are sending an HTTP response back to the client. This effectively ends the client -> server -> client "transaction" and there is nothing more that you can do until the client makes another request.
CFLOCATION does pretty much the same thing except that it tells the client to make a new request the URL specified in the location attribute. No HTML or javascript that comes after a CFCONTENT or CFLOCATION will make it to the browser. The only solution two solutions I can think of are: - use a frameset (or iframe), this will effectively create two HTTP requests (one to send the file and one to do the redirect) - have two links on the page, one to the file and one to go to the new URL. hth -- Mark Stanton Gruden Pty Ltd http://www.gruden.com --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
