Id think cfhttp would execute that page as if you actually went to it...
you'd have to test that out though. You could also set a cfschedule for
now() to run the page and you could also 'call' the page via JS like so...

function executePage()
{
        if (window.ActiveXObject)
        {
                xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
        else if (window.XMLHttpRequest)
        {
                xmlHttp = new XMLHttpRequest();
        }

        xmlHttp.open('GET', 'mycfmpage.cfm', true);
        xmlHttp.send(null);
}


 
..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-----Original Message-----
From: Jim McAtee [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 23, 2005 9:00 PM
To: CF-Talk
Subject: Run another CF template without waiting for return

How can I run (call) another CF template without waiting for the return of 
that template?  The other template resides on the same server, same 
directory as the caller.  Can't cfinclude it or call it as cfml tag.  Can 
I use cfhttp somehow?




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225158
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to