RE: What to use beside cfinclude

2006-11-01 Thread Alastair Young
You can't *include* it as will be on a different serverbut if you just need the output of this page try this: cfhttp url=http://domain2.com/page2.cfm; method=GET/cfhttp cfoutput#cfhttp.fileContent#/cfoutput However, if page2.cfm is on the same physical machine you can include it - you just

RE: What to use beside cfinclude

2006-11-01 Thread Andy Matthews
x737 --//- -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 31, 2006 4:12 PM To: CF-Talk Subject: RE: What to use beside cfinclude Would that attempt to process the page2.cfm on the domain2 and bring the contents to domain1

Re: What to use beside cfinclude

2006-10-31 Thread Steve Bryant
cfhttp is probably what you want. Steve All, I have a cf page on domain1.com page1.cfm and I want to include a cf page that resides on domain2.com, page2.cfm and have it appear on domain1.com's cf page of page2.cfm. Cfinclude does't work. I don't want to use iframe or frames I want it to be

RE: What to use beside cfinclude

2006-10-31 Thread Adkins, Randy
Setup a CFMapping so you can call it regardless of the domain -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 31, 2006 4:56 PM To: CF-Talk Subject: What to use beside cfinclude All, I have a cf page on domain1.com page1.cfm and I want to

RE: What to use beside cfinclude

2006-10-31 Thread Ian Skinner
cfhttp...? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - C code. C code run. Run code run. Please! - Cynthia Dunning Confidentiality Notice: This message including any attachments is

RE: What to use beside cfinclude

2006-10-31 Thread Andy Matthews
cfhttp would work just fine. cfhttp url=http://www.domain2.com/yourpage.cfm;/cfhttp cfdump var=CFHTTP.filecontent !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//-

RE: What to use beside cfinclude

2006-10-31 Thread Bobby Hartsfield
If they are on the same server then just use cfinclude else, cfhttp -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 31, 2006 4:56 PM To: CF-Talk Subject: What to use beside cfinclude All, I have a cf page on domain1.com page1.cfm and I want

RE: What to use beside cfinclude

2006-10-31 Thread Adkins, Randy
Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 31, 2006 5:06 PM To: CF-Talk Subject: RE: What to use beside cfinclude cfhttp would work just fine. cfhttp url=http://www.domain2.com/yourpage.cfm;/cfhttp cfdump var=CFHTTP.filecontent