RE: Cold Fusion and ASP

2000-11-30 Thread Clint Tredway
There is no problem. ASP and CF do not interfere with each other. -Original Message- From: netman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 29, 2000 6:18 PM To: CF-Talk Subject: Cold Fusion and ASP Good Evening, Does anyone know if there is a problem with using ASP to

Re: Cold Fusion and ASP

2000-11-30 Thread Gregory Harris
Web Developer Stirling Bridge Group LLC - Original Message - From: "Clint Tredway" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, November 30, 2000 6:38 AM Subject: RE: Cold Fusion and ASP There is no problem. ASP and CF do not inter

RE: Cold Fusion and ASP

2000-11-29 Thread James McCullough
Check to make sure that "Maintain database connection" box is unchecked for that datasource. It puts a lock on the database while CF is running if you do. To make sure look in the directory of the database and see if the ".ldb" lock is active(present). If so CF might have the db locked.

Re: Cold Fusion and ASP

2000-11-29 Thread netman
MAIL PROTECTED] Sent: Wednesday, November 29, 2000 10:11 PM Subject: RE: Cold Fusion and ASP Check to make sure that "Maintain database connection" box is unchecked for that datasource. It puts a lock on the database while CF is running if you do. To make sure look in the dir

RE: Cold Fusion and ASP

2000-11-29 Thread Rick Lamb
into problems using odbc datasource set up this way with cold fusion so only use this method if it's just for your asp connections. Rick -Original Message- From: netman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 29, 2000 9:22 PM To: CF-Talk Subject: Re: Cold Fusion and ASP Thanks

RE: Cold Fusion And ASP

2000-10-06 Thread Warrick, Mark
I believe you can do this with CFHTTP. -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://www.warrick.net Business Email: [EMAIL PROTECTED] Business URL:

Re: Cold Fusion And ASP

2000-10-06 Thread Billy Cravens
You can execute an ASP page and then display it on a CF page using CFHTTP. cfhttp url="myPage.asp?someurlvar=1someurlvar2=2" method="GET" resolveurl="false" cfoutput#cfhttp.filecontent#/cfoutput If the ASP page is expecting form variables: cfhttp url="myPage.asp" method="GET"