RE: way to import the C-Sharp code in ColdFusion.

2005-02-17 Thread Vince Bonfanti
Hi Nathan, BlueDragon doesn't support cfscript language=c#, but it does support cfinclude page=myPage.aspx, and of course the aspx page can contain c# scripts. My last comment wasn't meant to be a dig at you, just a reminder that there are other CFML servers on the market in addition to

RE: way to import the C-Sharp code in ColdFusion.

2005-02-17 Thread Calvin Ward
That works both ways. CFMX offers unique capabilities that yours does not. -Original Message- From: Vince Bonfanti [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 7:10 AM To: CF-Talk Subject: RE: way to import the C-Sharp code in ColdFusion. Hi Nathan, BlueDragon doesn't

Re: way to import the C-Sharp code in ColdFusion.

2005-02-17 Thread Claude Schneegans
How about cfscript language=c#? That would be great. It would peobabily have to be cfscript language=c## then ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL

RE: way to import the C-Sharp code in ColdFusion.

2005-02-17 Thread Calvin Ward
What would be REALLY cool would be cfscript language=ECMAScript or cfscript language=JavaScript Which reminds me, does anyone know of the specific differences between RegEx in CFMX and JavaScript? - Calvin -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent:

Re: way to import the C-Sharp code in ColdFusion.

2005-02-17 Thread Asim Manzur
Thanks guys, atleast I've hope now that it is possible. I setup the trial version of BlueDragon and playing with that now. First I do not have to translate all the C# codes in coldfusion. because I just have a web application. secondly. When I look for the aspx codes I saw that developer is

Re: way to import the C-Sharp code in ColdFusion.

2005-02-17 Thread Greg Morphis
Maybe you should direct this to the Blue Dragon support team? On Thu, 17 Feb 2005 11:21:31 -0500, Asim Manzur [EMAIL PROTECTED] wrote: Thanks guys, atleast I've hope now that it is possible. I setup the trial version of BlueDragon and playing with that now. First I do not have to

RE: way to import the C-Sharp code in ColdFusion.

2005-02-17 Thread Vince Bonfanti
Hi Asim, It looks like you're trying to create an instance of an aspx page object (implemented in Login.aspx.cs so that you can invoke method on that object, but without rendering the page? Is this correct? If so, try this: cfobject type=java action=create class=PFWeb.Login name=templogin Use

Re: way to import the C-Sharp code in ColdFusion.

2005-02-16 Thread Micha Schopman
This is not possible due to the advanced nature of the C# language. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client

RE: way to import the C-Sharp code in ColdFusion.

2005-02-16 Thread Vince Bonfanti
Yes, there is a real way to do this. C# (and any .NET language) is fully compatible with CFML, and you can invoke .NET code directly from CFML--using BlueDragon.NET you can create and invoke any .NET object using CFOBJECT (just as you can with Java objects on ColdFusion and the Java/J2EE editions

Re: way to import the C-Sharp code in ColdFusion.

2005-02-16 Thread Nathan Strutz
Hey Vince, How about cfscript language=c#? That would be great. Vince Bonfanti wrote: Just because ColdFusion can't do it, doesn't mean it can't be done. While this is somewhat of a dig on what I said, I gotta at least hand it to your relentless marketing on cf-talk, while staying

RE: way to import the C-Sharp code in ColdFusion.

2005-02-16 Thread Tom Jordahl
Asim, Sure you can use C# code in Macromedia ColdFusion MX. In general you should create a COM object and use the CFObject tag to instantiate it. You can then invoke methods on the object, just as you can from C++ or Visual Basic. Obviously we do not have a C# interpreter built in to CFMX. :-)

RE: way to import the C-Sharp code in ColdFusion.

2005-02-16 Thread Micha Schopman
For what I understand (but I could have misread it), he wants to convert C# to CFML. And after that well.. run it :) Wether you choose BlueDragon or MM CFMX to run that converted code, depends on if your code can run on BlueDragon. If you want to run C# code pick BlueDragon, if you purely want to