RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
Thanks Brian, But I am still having problems figuring this out... I would things that if ASP could store complex data types in a Cookie then shouldn't CF be able to also. It seems more like an array of data that I need to store as a cookie. I am not a Cookie Master unless we are talking about

RE: CF Cookie ASP Cookie?

2005-09-28 Thread Ian Skinner
A cookie can only store a string. So to store multiple values you need to store some kind of delineated string. myvar=1,yourVar=2,joesVar=3 Using this method you can store as much data is you can fit into the current limit on the size of a cookie. It is up to you to create and parse the

RE: CF Cookie ASP Cookie?

2005-09-28 Thread Mosh Teitelbaum
should be pretty sound. HTH -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Bailey, Neal [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 27, 2005 5:43 PM To: CF-Talk Subject: CF Cookie

RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
what a mess... Thanks again.. Neal Bailey Internet Marketing Manager -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 10:46 AM To: CF-Talk Subject: RE: CF Cookie ASP Cookie? Neal: ASP supports something it calls a Cookie

Recall: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
Bailey, Neal would like to recall the message, CF Cookie ASP Cookie?. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project

RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
OK guys... I think I have my Cookie kind of figured out now... It seems ASP does not actually store the cookie as complex variables but instead it's more of a comma delimited format using as the delimiter. Anyway now that I figure out that problem I have another... I am storing the values

Re: CF Cookie ASP Cookie?

2005-09-28 Thread Bryan Stevenson
: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original Message - From: Bailey, Neal [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, September 28, 2005 10:24 AM Subject: RE: CF Cookie ASP Cookie? OK guys

Re: Recall: CF Cookie ASP Cookie?

2005-09-28 Thread Bryan Stevenson
] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, September 28, 2005 10:30 AM Subject: Recall: CF Cookie ASP Cookie? Bailey, Neal would like to recall the message, CF Cookie ASP Cookie?. ~| Logware (www.logware.us

Re: CF Cookie ASP Cookie?

2005-09-28 Thread Bryan Stevenson
Oh yeah...and when you say look at the cookie value I assume you have actually opened the cookie file?? Try cfdump var=#COOKIE.Rsagent2# and see if all the encoding goes away ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642

RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
to the cookie. Neal Bailey Internet Marketing Manager -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 12:34 PM To: CF-Talk Subject: Re: CF Cookie ASP Cookie? Oh yeah...and when you say look at the cookie value I assume you have actually

Re: CF Cookie ASP Cookie?

2005-09-28 Thread Bryan Stevenson
So look on the ASP side for a function to decode the cookie value ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

RE: CF Cookie ASP Cookie?

2005-09-28 Thread Bailey, Neal
Yeah I wish that was an option... but it would require changing too many pages. Neal Bailey Internet Marketing Manager -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 1:04 PM To: CF-Talk Subject: Re: CF Cookie ASP Cookie? So look

CF Cookie ASP Cookie?

2005-09-27 Thread Bailey, Neal
Hey Guys I have been searching everywhere on this and I can't seem to figure this out. I am only familiar with using CF Cookies in the standard way but I have this asp site that I am having to port over to CF and I need to write cookies in CF much the same way we did using ASP. But it seems that

Re: CF Cookie ASP Cookie?

2005-09-27 Thread Bryan Stevenson
Not 100% what the ASP code is doingbut it looks like acookie named RSHold which conatins a structure with keys (agentNumber etc.) AFAIK you can't store complex datatypes in cookies (such as structures).so my interpretation of the ASP cookie code may very well be wrong If I am

IIS/Index Server/CF and ASP

2005-09-22 Thread B G
This is going to be broad, but is based on a CF problem I am having. I have an ASP search page which is referencing Index Server catalogs. It's a standard one I found and I believe is commonly used. I can provide the whole code if necessary. The Index Server appears to be cataloging both

Re: IIS/Index Server/CF and ASP

2005-09-22 Thread Jerry Johnson
I do not have any specific info for you, just a guess and direction to research. My guess is that whatever is doing the indexing (a filter of some sort) does not know that CFM files have a similar structure to .HTM files. You are probably going to need to add cfm files to the list of filetypes

Re: IIS/Index Server/CF and ASP

2005-09-22 Thread B G
=Document Untitled Any suggestions? From: Jerry Johnson [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com To: CF-Talk cf-talk@houseoffusion.com Subject: Re: IIS/Index Server/CF and ASP Date: Thu, 22 Sep 2005 15:35:42 -0400 I do not have any specific info for you, just a guess and direction

Re: Need to share encryption between CF and ASP environments

2005-08-23 Thread Fabio Terracini
Personally, I don't think storing CC numbers are a good idea. You can encrypt/decrypt data in between envoirments if they use the same algorithm. Checkout CF documentations to see avaiable algorithms. Also, if it's possible by your functional needs (not on the CC case, probably), one-way

Re: Need to share encryption between CF and ASP environments

2005-08-23 Thread Ken Ferguson
Yeah, storing the CC numbers is a scary thing to do. You open yourselves up to a tremendous amount of liability. If you do decide to do it though, you might find or write an executable that will (en)(de)crypt your strings, then you could call it from .NET apps and CF apps as needed. This

Re: Need to share encryption between CF and ASP environments

2005-08-23 Thread Seth Bienek
CF and ASP environments If you use the same encryption algorythum on both then yes. There are plenty of MD5, SHA, whatever encyption components out there, just download and use one of them. COM can be called form CF too.. Russ -Original Message- From: Matthew Friedman [mailto

RE: Need to share encryption between CF and ASP environments

2005-08-23 Thread Kerry
-Talk Subject: Re: Need to share encryption between CF and ASP environments Personally, I don't think storing CC numbers are a good idea. You can encrypt/decrypt data in between envoirments if they use the same algorithm. Checkout CF documentations to see avaiable algorithms. Also, if it's

Need to share encryption between CF and ASP environments

2005-08-22 Thread Matthew Friedman
We are trying to marry a CF application and an ASP application that will need to process credit cards. What we wish to do is to encrypt and store the CC number in only one of the environments, but both will need to be able to decrypt the information and process payments. we have a payment system

RE: Need to share encryption between CF and ASP environments

2005-08-22 Thread Russ Michaels
2005 02:38 To: CF-Talk Subject: Need to share encryption between CF and ASP environments We are trying to marry a CF application and an ASP application that will need to process credit cards. What we wish to do is to encrypt and store the CC number in only one of the environments, but both

Integrating CF with ASP/SSI code?

2004-05-26 Thread Reed Powell
in one place.But the dynamic pages are in ASP, with SQL calls from the hosting service back to our SQL server in the office.What I want to do is to replace the ASP code with CF code so that I can build additional functionality into those pages.However, the presence of the SSI seems to get

RE: Integrating CF with ASP/SSI code?

2004-05-26 Thread Matthew Walker
It would be quite easy to run a regular _expression_ search and replace to turn all your SSIs into cfincludes using a tool like HomeSite. Would that help? _ From: Reed Powell [mailto:[EMAIL PROTECTED] Sent: Thursday, 27 May 2004 12:16 p.m. To: CF-Talk Subject: Integrating CF with ASP/SSI

RE: CF and ASP

2003-11-24 Thread Bushy
Can I have some ASP code in my test.cfm file? Its a breadcrumb writting in ASP. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: CF and ASP

2003-11-24 Thread d.a.collie
- From: Bushy [mailto:[EMAIL PROTECTED] Sent: 24 November 2003 17:38 To: CF-Talk Subject: RE: CF and ASP Can I have some ASP code in my test.cfm file? Its a breadcrumb writting in ASP. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: CF and ASP

2003-11-24 Thread Schuster, Steven
What if you used an IFRAME. That may work. Dunno though as I have never tried it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 2:39 PM To: CF-Talk Subject: RE: CF and ASP Doubt it the .cfm file will tell the webserver to use

RE: CF and ASP

2003-11-24 Thread d.a.collie
nice thinking see no reason why it shouldn't work as it is two separate page calls.. I like it Steven :-) -Original Message- From: Schuster, Steven [mailto:[EMAIL PROTECTED] Sent: 24 November 2003 19:41 To: CF-Talk Subject: RE: CF and ASP What if you used an IFRAME. That may work

Re: CF and ASP

2003-11-24 Thread Larry C. Lyons
Bushy wrote: Can I have some ASP code in my test.cfm file? Its a breadcrumb writting in ASP. Why bother? There are several very good bread crumb functions and custom tags on MM exchange and cflib.org. larry [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: CF and ASP

2003-11-24 Thread Bushy
Yea...I found a few on MM exchange. They just need a little modifying --Original Message Text--- From: Larry C. Lyons Date: Mon, 24 Nov 2003 21:04:30 -0500 Bushy wrote: Can I have some ASP code in my test.cfm file? Its a breadcrumb writting in ASP. Why bother? There are several very good

Re: Translation please: CFC::CF as ???:ASP

2003-10-24 Thread Jesse Houwing
Dave Watts wrote: So, my question is, what do ASP people refer to components as? Within a well-designed classic ASP application, business logic is separated from ASP scripting by putting it within COM (or COM+ or MTS) objects. Classic ASP development best practices recommend the use of COM

Translation please: CFC::CF as ???:ASP

2003-10-23 Thread powell
Hi guys!I have a client who is dealing with a software development company that supplies a VB-based client application, which also has a web component.They do their web work in ASP.My client has another vendor that prefers to use CF for their work, and needs to talk to the ASP oriented vendor.I'm

Re: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread Tom Kitta
between CF and ASP parts. TK - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: CF-Talk Sent: Thursday, October 23, 2003 1:15 PM Subject: Translation please: CFC::CF as ???:ASP Hi guys!I have a client who is dealing with a software development company that supplies a VB

RE: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread Ben Densmore
- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 1:16 PM To: CF-Talk Subject: Translation please: CFC::CF as ???:ASP Hi guys!I have a client who is dealing with a software development company that supplies a VB-based client application, which

RE: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread Samuel Neff
:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 1:16 PM To: CF-Talk Subject: Translation please: CFC::CF as ???:ASP Hi guys!I have a client who is dealing with a software development company that supplies a VB-based client application, which also has a web component. They do their web work

RE: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread Dave Watts
So, my question is, what do ASP people refer to components as? Within a well-designed classic ASP application, business logic is separated from ASP scripting by putting it within COM (or COM+ or MTS) objects. Classic ASP development best practices recommend the use of COM for any significant

Re: Translation please: CFC::CF as ???:ASP

2003-10-23 Thread brob
COM OBJECTS? - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: CF-Talk Sent: Thursday, October 23, 2003 12:15 PM Subject: Translation please: CFC::CF as ???:ASP Hi guys!I have a client who is dealing with a software development company that supplies a VB-based client

easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
Sorry for posting this here but no one seems to know on the asp boards. I pretty much have this figured out in cf but not as easy in asp. I have a clients site that is in asp and they need to track when a person logs in for example, they need to be able to pull up employee A and see their login

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread John Paul Ashenfelter
complicated going on? Regards, John Paul Ashenfelter CTO/Transitionpoint [EMAIL PROTECTED] - Original Message - From: Dave Lyons [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 1:59 PM Subject: easier in cf then asp, but i need it in asp Sorry for posting

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Fregas
- From: Dave Lyons [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 12:59 PM Subject: easier in cf then asp, but i need it in asp Sorry for posting this here but no one seems to know on the asp boards. I pretty much have this figured out in cf but not as easy

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
in cf then asp, but i need it in asp Sorry for posting this here but no one seems to know on the asp boards. I pretty much have this figured out in cf but not as easy in asp. I have a clients site that is in asp and they need to track when a person logs in for example, they need

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
asp3 using the standard dwmx login form, non-secure unfortunately, they won't let me spend the $ to get them cfmx - Original Message - From: Fregas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 2:38 PM Subject: Re: easier in cf then asp, but i need

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Jeff Garza
: easier in cf then asp, but i need it in asp Sorry for posting this here but no one seems to know on the asp boards. I pretty much have this figured out in cf but not as easy in asp. I have a clients site that is in asp and they need to track when a person logs in for example, they need to be able

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
right on, thank you this might call 4 a thinking session on the thrown haha - Original Message - From: Jeff Garza [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 2:47 PM Subject: Re: easier in cf then asp, but i need it in asp You'll have to use

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Fregas
: Re: easier in cf then asp, but i need it in asp asp3 using the standard dwmx login form, non-secure unfortunately, they won't let me spend the $ to get them cfmx - Original Message - From: Fregas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 2

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
right, just checks the db - Original Message - From: Fregas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 3:22 PM Subject: Re: easier in cf then asp, but i need it in asp So does thethe DWMX form just do a look up in your database or does it have

RE: easier in cf then asp, but i need it in asp

2003-01-08 Thread Timothy Heald
It should be just as easy in asp. Open your connection to the db, then run the two queries. I don't understand why this would be any more difficult in asp than in CF. I am not an ASP person, so this took a bit of playing to get just right, but it should be totally doable. If your checking

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Fregas
of code off list. Craig - Original Message - From: Dave Lyons [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 2:36 PM Subject: Re: easier in cf then asp, but i need it in asp right, just checks the db - Original Message - From: Fregas [EMAIL

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
Thanks a lot! I will try it I might send you the code, I'll owe u 1 though! - Original Message - From: Fregas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 5:00 PM Subject: Re: easier in cf then asp, but i need it in asp Ok. What you need to do

Re: CF to ASP ?

2002-12-13 Thread Aaron Johnson
On Thu, 2002-12-12 at 19:34, Cold As Ice Fusion wrote: I can't find CF work here in California bay area. It seems like there are about 10 times as many ASP.net jobs out there, so I'm looking for some pointers on getting started with ASP.NET from a cf fusebox developers perspective. -- First

CF to ASP ?

2002-12-12 Thread Cold As Ice Fusion
I can't find CF work here in California bay area. It seems like there are about 10 times as many ASP.net jobs out there, so I'm looking for some pointers on getting started with ASP.NET from a cf fusebox developers perspective. Get more from the Web. FREE MSN Explorer download :

(OT) CF vs. Asp vs. etc.

2002-11-07 Thread Michael Dinowitz
PLEASE DO NOT REPLY TO THIS THREAD ON CF-TALK. I've been asked to update the HoF document on CF vs. Asp. I'm not really doing anything with .Net so it's going to be somewhat of a problem. A perfect solution is to ask the community for help. I'd like to ask anyone who wants to help define

CF vs ASP

2002-10-09 Thread Howell Craig H Civ WRALC/LEEA
OK...I know I'm going to get beat-up over this question, but... Being new at this, I am trying to determine why I should learn CF over ASP (or vice versa). Any input would be appreciated. Thanks. Craig

RE: CF vs ASP

2002-10-09 Thread Thomas Chiverton
Being new at this, I am trying to determine why I should learn CF over ASP (or vice versa). http://www.macromedia.com/software/coldfusion/productinfo/competitive/ Tom Chiverton You don't have to be a mad scientist to believe in ColdFusion

RE: CF vs ASP

2002-10-09 Thread usr1
I think you would be better off learning JSP(java server pages) and some j2ee. Why? Because what CFMX does is translate CFML pages into some servlets (correct me if I am wrong) so why learning CF(providing you don't know it already) when you can learn Java(JSP and stuff). As I see it CF is far

RE: CF vs ASP

2002-10-09 Thread Kris Pilles
that we see fit Hate to say it but my days on the list are numbered... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 9:03 AM To: CF-Talk Subject: RE: CF vs ASP I think you would be better off learning JSP(java server pages

RE: CF vs ASP

2002-10-09 Thread Gary W. Sullivan II
Subject: RE: CF vs ASP I'm hard pressed not to move all of my future development to .Net. AS much as I love CF and how well I know it, Being a Windows application developer, I can't not switch to .NET it will allow me to have all of our programmers on 1 platforma dn deploy our applications

RE: CF vs ASP

2002-10-09 Thread Kris Pilles
Good point. -Original Message- From: Gary W. Sullivan II [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 9:18 AM To: CF-Talk Subject: RE: CF vs ASP Well, Kim... Keep in mind that you can still be a .NET guru and live in harmony with CF!!! I, too, am a Windows App

RE: CF vs ASP

2002-10-09 Thread Benoit Hediard
Objet : RE: CF vs ASP I think you would be better off learning JSP(java server pages) and some j2ee. Why? Because what CFMX does is translate CFML pages into some servlets (correct me if I am wrong) so why learning CF(providing you don't know it already) when you can learn Java(JSP and stuff). As I

RE: CF vs ASP

2002-10-09 Thread Rob Rohan
ASP OK...I know I'm going to get beat-up over this question, but... Being new at this, I am trying to determine why I should learn CF over ASP (or vice versa). Any input would be appreciated. Thanks. Craig ~| Archives: http

RE: CF vs ASP

2002-10-09 Thread Stacy Young
. Stace -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 9:03 AM To: CF-Talk Subject: RE: CF vs ASP I think you would be better off learning JSP(java server pages) and some j2ee. Why? Because what CFMX does is translate CFML pages

Mixing CF and ASP on same server

2002-09-23 Thread Earl, George
Is it ok to mix ColdFusion and ASP applications on the same web server or should they be kept separate on their own servers? Why? Thanks! George [EMAIL PROTECTED] __ Get the mailserver that powers this list at

RE: Mixing CF and ASP on same server

2002-09-23 Thread Mark A. Kruger - CFG
There aren't any conflicts with doing this. The real issue is general server resources. If you've covered that base you'll be ok. -mk -Original Message- From: Earl, George [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 12:31 PM To: CF-Talk Subject: Mixing CF and ASP

RE: Mixing CF and ASP on same server

2002-09-23 Thread Tony Weeg
its 100% fine from what I have ran/tested on cf5/cfmx on iis5. now, from what I have learned, I don't think you can have both cf and asp parse the same page ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337

Re: Mixing CF and ASP on same server

2002-09-23 Thread S . Isaac Dealey
Is it ok to mix ColdFusion and ASP applications on the same web server or should they be kept separate on their own servers? Why? Thanks! It's more overhead on the server since you've got 2 servers taking up memory and cpu time... but there's nothing to prevent it ... My only concern would be

RE: Mixing CF and ASP on same server

2002-09-23 Thread Phoeun Pha
It's really a matter of being able to afford another server. Otherwise, nuffin wrong :) -Original Message- From: Earl, George [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 12:31 PM To: CF-Talk Subject: Mixing CF and ASP on same server Is it ok to mix ColdFusion and ASP

Re: CF vs. ASP

2002-08-27 Thread Jochem van Dieten
Rizal Firmansyah wrote: WOW! Jochem, this is weird. First i thought the first time cfmail being executed within .cfm script, it creates an email-msg file containing all data, including attachments if any. No, just a reference to the attachment. But apparently it doesn't :( Do you

Re: CF vs. ASP

2002-08-27 Thread Jochem van Dieten
Matt Liotta wrote: The problem here is that cfmail doesn't block while the file is in the spool. You are either going to need to adapt your code to support some sort of asynchronous events or use a mail library you can serialize e.g. javax.mail. Hence my comment about first figuring out how

RE: CF vs. ASP

2002-08-27 Thread Everett, Al
-Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Attempting to show that CF is a more rabid development platform than ASP... Petco* has low-cost clinics every two weeks. You seem to be frothing at the mouth. cf_tongueInCheek * Large pet supply chain in the U.S.

RE: CF vs. ASP

2002-08-27 Thread Edwards Robert (air0rae)
code off and the quicker response time (this was in the days of ASP 2.0 vs. CF 2.0, the book we used was BF's Web application Construction Kit 2nd Ed.) I was sold on ASP from that day forward and vowed never to use CF again. I started my own business and things went well for a while. Then I had

RE: CF vs. ASP

2002-08-27 Thread Jeremy Allen
I know the whole CF and why people are using it issue has been hashed out quite a bit but I would like to add my two cents coming from a different background than most web developers. I started my programmer career with C. In C you have absolute control over everything going on in your program.

Re: CF vs. ASP

2002-08-27 Thread Gyrus
- Original Message - From: Matt Liotta [EMAIL PROTECTED] People on this list are amazing. I haven't pointed out anything that is wrong with CF in this thread. I have simply pointed out that sometimes other solutions are better, which is far from hating CF. ---

RE: CF vs. ASP

2002-08-27 Thread Matt Liotta
To: CF-Talk Subject: Re: CF vs. ASP Matt Liotta wrote: The problem here is that cfmail doesn't block while the file is in the spool. You are either going to need to adapt your code to support some sort of asynchronous events or use a mail library you can serialize e.g. javax.mail

RE: CF vs. ASP

2002-08-27 Thread Matt Liotta
]] Sent: Tuesday, August 27, 2002 6:54 AM To: CF-Talk Subject: Re: CF vs. ASP - Original Message - From: Matt Liotta [EMAIL PROTECTED] People on this list are amazing. I haven't pointed out anything that is wrong with CF in this thread. I have simply pointed out that sometimes other

Re: CF vs. ASP

2002-08-27 Thread Jacob
Knew this was going to be a big thread... __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ:

Re: CF vs. ASP

2002-08-27 Thread Gyrus
- Original Message - From: Jacob [EMAIL PROTECTED] Knew this was going to be a big thread... --- How about CFvsASP-Talk !! ;-) - Gyrus - [EMAIL PROTECTED] work: http://www.tengai.co.uk play: http://www.norlonto.net - PGP key

Re: CF vs. ASP

2002-08-27 Thread Joe Eugene
PROTECTED] Sent: Tuesday, August 27, 2002 9:31 AM Subject: RE: CF vs. ASP I know the whole CF and why people are using it issue has been hashed out quite a bit but I would like to add my two cents coming from a different background than most web developers. I started my programmer career with C

Re: CF vs. ASP

2002-08-27 Thread Bryan Stevenson
] Sent: Monday, August 26, 2002 6:22 PM Subject: RE: CF vs. ASP Sure... but the same could be said about ANY programming language. But this isn't ANY-Talk. This is CF-Talk and we are discussing CF vs. ASP, which makes it relevant. I certainly don't believe ColdFusion is the ultimate solution

RE: CF vs. ASP

2002-08-27 Thread Matthew R. Small
] Sent: Monday, August 26, 2002 6:22 PM Subject: RE: CF vs. ASP Sure... but the same could be said about ANY programming language. But this isn't ANY-Talk. This is CF-Talk and we are discussing CF vs. ASP, which makes it relevant. I certainly don't believe ColdFusion is the ultimate solution

RE: CF vs. ASP

2002-08-27 Thread Perez, Jimmy
lists for it!) Jimmy -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 6:28 PM To: CF-Talk Subject: RE: CF vs. ASP I know that I am chiming in late here, but here goes. Learning another language can never hurt. Case in point. I put all of my

RE: CF vs. ASP

2002-08-27 Thread Perez, Jimmy
Would that be with the CFSHUTTLE tag? Mr. Sulu, instantiate the fuel tank separation CFC! -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 7:39 PM To: CF-Talk Subject: RE: CF vs. ASP sorry, i didnt mean to come across like that, if you read

RE: CF vs. ASP

2002-08-27 Thread Perez, Jimmy
Shack) you might have your foot in the door with the I am flexible and constantly expand my horizons argument. -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 5:36 PM To: CF-Talk Subject: RE: CF vs. ASP thank you bryan! let matt be matt, i

Re: CF vs. ASP

2002-08-27 Thread Sean A Corfield
On Tuesday, August 27, 2002, at 09:11 , Matthew R. Small wrote: Intranets are one thing I can think of. I have an intranet here that I wrote last year using CF - because I am most experienced at CF. However, I believe that had I written it in ASP, I would have not encountered the numerous

RE: CF vs. ASP

2002-08-27 Thread Matthew R. Small
-357-1847 http://www.showstopperonline.com -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 27, 2002 1:21 PM To: CF-Talk Subject: Re: CF vs. ASP On Tuesday, August 27, 2002, at 09:11 , Matthew R. Small wrote: Intranets are one thing I can think

Re: CF vs. ASP

2002-08-27 Thread Sean A Corfield
On Tuesday, August 27, 2002, at 11:25 , Matthew R. Small wrote: Well, just to put your comments in perspective, let me ask a question: Did you research other technologies to see if there was one better suited to the need of your intranet? Yes, we already use BroadVision, Perl CGI, ASP... we

CF vs. ASP

2002-08-26 Thread Perez, Jimmy
Hello all, I am a CF certified developer (missed advanced by three points) but am thinking of expanding my horizons/marketability. I have started getting up to speed in ASP/VBScript but the question keeps coming up: should I even spend any time doing this or should I just concentrate on CF?

Re: CF vs. ASP

2002-08-26 Thread Alex
Use the right tool for the job. And if you have to ask if you should keep all your eggs in one basket then I have a bridge I'd like to sell you. On Mon, 26 Aug 2002, Perez, Jimmy wrote: Hello all, I am a CF certified developer (missed advanced by three points) but am thinking of expanding

RE: CF vs. ASP

2002-08-26 Thread Christopher Olive
. there are light years of difference between the two. chris olive -Original Message- From: Perez, Jimmy [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 3:44 PM To: CF-Talk Subject: CF vs. ASP Hello all, I am a CF certified developer (missed advanced by three points) but am thinking

RE: CF vs. ASP

2002-08-26 Thread Shawn Grover
Sooner or later you, as a web developer, will run into a situation where CF is not an option (client choice, server restrictions, etc.). When this happens, if you haven't learned ASP/VBScript, or some other suitable technology, then you probably won't be able to work on the project. With ASP

RE: CF vs. ASP

2002-08-26 Thread Jillian Carroll
My .02 is: If you 'put all your eggs in one basket' you lock yourself out of another potentially rewarding market: the website/application UPGRADE. People may have existing sites in .asp, .php, etc that are perfectly usable and functional... and they want to add functionality. If you only know

RE: CF vs. ASP

2002-08-26 Thread Perez, Jimmy
As long as the price is right... :) Thanks -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 2:56 PM To: CF-Talk Subject: Re: CF vs. ASP Use the right tool for the job. And if you have to ask if you should keep all your eggs in one basket then I

RE: CF vs. ASP

2002-08-26 Thread Buddy
site (Red Hat, Resin, PostgreSQL) [yes I said production, as in live, on Resin. It worked very well]. My 2 cents. -Original Message- From: Perez, Jimmy [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 12:44 PM To: CF-Talk Subject: CF vs. ASP Hello all, I am a CF certified

RE: CF vs. ASP

2002-08-26 Thread Shawn Regan
m -Original Message- From: Perez, Jimmy [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 12:44 PM To: CF-Talk Subject: CF vs. ASP Hello all, I am a CF certified developer (missed advanced by three points) but am thinking of expanding my horizons/marketability. I have started

Re: CF vs. ASP

2002-08-26 Thread Bryan Stevenson
Being that I'm finally going to learn some ASP and PHP, I have a quick question regarding ASP and ASP.NET. I have taken a quick look at ASP 2 or 3 (can't remember which) which was long enough to know that it was never going to be a favourite like CF. My question is what is the difference

RE: CF vs. ASP

2002-08-26 Thread Tony Carcieri
[mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 4:15 PM To: CF-Talk Subject: RE: CF vs. ASP My .02 is: If you 'put all your eggs in one basket' you lock yourself out of another potentially rewarding market: the website/application UPGRADE. People may have existing sites in .asp, .php, etc

RE: CF vs. ASP

2002-08-26 Thread Tony Weeg
Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Perez, Jimmy [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 4:11 PM To: CF-Talk Subject: RE: CF vs. ASP As long as the price is right... :) Thanks

RE: CF vs. ASP

2002-08-26 Thread Robert Everland
getting a job or a competitor. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 4:35 PM To: CF-Talk Subject: RE: CF vs. ASP CASE IN POINT

Re: CF vs. ASP

2002-08-26 Thread S . Isaac Dealey
Hello all, I am a CF certified developer (missed advanced by three points) but am thinking of expanding my horizons/marketability. I have started getting up to speed in ASP/VBScript but the question keeps coming up: should I even spend any time doing this or should I just concentrate on

RE: CF vs. ASP

2002-08-26 Thread Matt Liotta
- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 1:35 PM To: CF-Talk Subject: RE: CF vs. ASP CASE IN POINT TOO MANY LINES/CHARACTERS OF BS VBSHIT CODE Dim MyMail Dim MsgText Set MsgText = Request.Form(FirstName

  1   2   3   >