I would have to see what your custom tag is but I would think either you are
using cfhttp to do everythign or you are using wscript. Either way there is
gonna be a way to do it, so if you would be so kind as to send me your code
so that I may evaluate a way to do this.


bob everland

-----Original Message-----
From: Scott, Andrew [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 22, 2001 6:13 PM
To: CF-Talk
Subject: RE: Strengths of each


Actually you can mix the two, and I have developed a custom tag that can do
something like the following

<cf_IncludeScript [filename="whatever" /]>
 <%
  a=1
  b=2
  c=3
 %>
</cf_IncludeScript>

Which would then execute the ASP from within the cfml template, the only
problem is that I haven't found a way to share the result with CF. But I
could do something like the following without any problems.


<cfset strTest="Hello">

<cf_IncludeScript [filename="whatever" /]>

 <%
  a=1
  b=2
  c=3
  <cfoutput>#strTest#</cfoutput>
 %>

</cf_IncludeScript>

But I haven't had the time to learn enough about ASP, to take the variables
from ASP tp Coldfusion.... So if anyone has any ideas to develop this
further I would like to hear from you.



-----Original Message-----
From: Nick Texidor [mailto:[EMAIL PROTECTED]]
Sent: 23 February 2001 08:02
To: CF-Talk
Subject: Re: Strengths of each


Hi Terry,

To answer your first question, yes, CF and ASP can coexist on the server,
there are no problems having a mix of ColdFusion and ASP pages within a
site, however, I'm pretty certain you can forget sharing Session and
Application variables between these environments.  But you could pass
variables through on URL's.

We tend to write CF only sites now, while we used to be mainly ASP
developers, however we've never needed to mix the two.

Hope this helps a little bit.  Feel free to contact me off list if you have
any further questions.

Nick

> From: "Terry Troxel" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: Thu, 22 Feb 2001 11:09:31 -0800
> To: CF-Talk <[EMAIL PROTECTED]>
> Subject: Strengths of each
>
> I am posing a question that has been rattling around in my mind for
awhile.
> My host runs on O'Reilly WebSite Pro, so I have zero exposure to IIS and
> maybe that is why I m in the dark.
> I would like to know if CF and ASP can co-exist and possibly trade data
like
> CF does with javascript, WAP, etc.
>
> The second part of my question is if this is possible has anyone compiled
a
> list of what types of procedures, functionality is best handled by which.
>
> If these questions are true then I have to get onto an IIS host, and start
> learning ASP to broaden my skills. I assume this is the path alot of you
> have taken by the frequency of ASP and CF in your signatures.
>
> Terry Troxel
>
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to