Re: Coldfusion vs. Jsp

2001-02-01 Thread Rey Bango

Nope. I mean that you choose the right tool for the job. Jeffry Houser said
it best when he stated "Each one has it's strengths and weaknesses". You
need to evaluate your project, define the requirements and choose the best
tool for producing a solid solution, on time and within budget.

Rey...
Team Allaire.

- Original Message -
From: "Michael" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, January 31, 2001 9:42 AM
Subject: Re: Coldfusion vs. Jsp


 So do you mean jsp pages are better then cfm pages?





 "Rey Bango" [EMAIL PROTECTED] wrote in message
 007101c08a3d$9e1cce60$0d0b320a@RBango">news:007101c08a3d$9e1cce60$0d0b320a@RBango...
   who branded Jsp?  
 
  Sun Microsystems.
 
   and which is better? 
 
  The one that allows you to provide the best  most comprehensive
solution
  for your client or employer. Not being sarcastic. Just honest.
 
  Rey
  Team Allaire
 
 
 
  - Original Message -
  From: "Phoeun Pha" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Monday, January 29, 2001 3:39 PM
  Subject: Coldfusion vs. Jsp
 
 
   who branded Jsp?  and which is better?
  
  
  
  
   -Original Message-
   From: John Stanley [mailto:[EMAIL PROTECTED]]
   Sent: Monday, January 29, 2001 1:40 PM
   To: CF-Talk
   Subject: White Space -- Solution
  
  
   Again, as soon as I send the e-mail out; I figuire it out...
  
   I just needed to concatanate a variable with each segment of the
output
  and
   then display the end result as such:
  
   1000129200119
  
   CODE SNIPPET
  
   cfif batch_header_done is 0
   !--- Create Batch Record ---
   !--- Transaction Type ---
   cfset batch= 1
   !--- Submitting facility code ---
   cfif len(check_billing.countycode) lt 2
   cfset county_difference = (2 -
   len(check_billing.countycode))
   cfloop index="counter" from="1"
   to="#county_difference#"
   cfset batch = batch  "0"
   /cfloop
   cfset batch = batch 
   "#check_billing.countycode#"
   cfelse
   cfset batch = batch 
   "#check_billing.countycode#"
   /cfif
   !--- Batch submission Date ---
   cfset batch = batch 
   "#DateFormat(currentsharecaredatetime, 'mmdd')#"
   !--- Record count ---
   cfif len(get_affected_records.recordcount) lt 6
   cfset record_difference = (6 -
   len(get_affected_records.recordcount))
   cfloop index="counter" from="1"
   to="#record_difference#"
   cfset batch = batch  "0"
   /cfloop
   cfset batch = batch 
   "#get_affected_records.recordcount#"
   cfelseif len(get_affected_records.recordcount) is
   6
   cfset batch = batch 
   "#get_affected_records.recordcount#"
   cfelseif len(get_affected_records.recordcount) gt
   6
   cfset batch = batch  "99"
   /cfif
   cfset batch_header_done = 1
   #batch#
   /cfif
  
   Thanks anyway guys
  
   John Stanley
  
 

~~
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



Re: Coldfusion vs. Jsp

2001-02-01 Thread Rey Bango

You must have children, Steve. ;o)

Rey,\\
Certified Allaire Instructor
Member of Team Allaire

"A browser's beauty, at its heart, is its usefulness as a *TOOL*."

- Original Message -
From: "Steve Bernard" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, January 31, 2001 11:05 AM
Subject: RE: Coldfusion vs. Jsp


 It's a "those with stars, and those without stars on thars" thing. ;)

 Steve

 -Original Message-
 From: Michael [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, January 31, 2001 9:42 AM
 To: CF-Talk
 Subject: Re: Coldfusion vs. Jsp


 So do you mean jsp pages are better then cfm pages?





 "Rey Bango" [EMAIL PROTECTED] wrote in message
 007101c08a3d$9e1cce60$0d0b320a@RBango">news:007101c08a3d$9e1cce60$0d0b320a@RBango...
   who branded Jsp?  
 
  Sun Microsystems.
 
   and which is better? 
 
  The one that allows you to provide the best  most comprehensive
solution
  for your client or employer. Not being sarcastic. Just honest.
 
  Rey
  Team Allaire


~~
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



Re: Coldfusion vs. Jsp

2001-02-01 Thread Peter Theobald

No, but Spiderman is much better than the Hulk.
End of topic please.

At 06:42 AM 1/31/01 -0800, Michael wrote:
So do you mean jsp pages are better then cfm pages?





"Rey Bango" [EMAIL PROTECTED] wrote in message
007101c08a3d$9e1cce60$0d0b320a@RBango">news:007101c08a3d$9e1cce60$0d0b320a@RBango...
  who branded Jsp?  

 Sun Microsystems.

  and which is better? 

 The one that allows you to provide the best  most comprehensive solution
 for your client or employer. Not being sarcastic. Just honest.

 Rey
 Team Allaire



 - Original Message -
 From: "Phoeun Pha" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Monday, January 29, 2001 3:39 PM
 Subject: Coldfusion vs. Jsp


  who branded Jsp?  and which is better?
 
 
 
 
  -Original Message-
  From: John Stanley [mailto:[EMAIL PROTECTED]]
  Sent: Monday, January 29, 2001 1:40 PM
  To: CF-Talk
  Subject: White Space -- Solution
 
 
  Again, as soon as I send the e-mail out; I figuire it out...
 
  I just needed to concatanate a variable with each segment of the output
 and
  then display the end result as such:
 
  1000129200119
 
  CODE SNIPPET
 
  cfif batch_header_done is 0
  !--- Create Batch Record ---
  !--- Transaction Type ---
  cfset batch= 1
  !--- Submitting facility code ---
  cfif len(check_billing.countycode) lt 2
  cfset county_difference = (2 -
  len(check_billing.countycode))
  cfloop index="counter" from="1"
  to="#county_difference#"
  cfset batch = batch  "0"
  /cfloop
  cfset batch = batch 
  "#check_billing.countycode#"
  cfelse
  cfset batch = batch 
  "#check_billing.countycode#"
  /cfif
  !--- Batch submission Date ---
  cfset batch = batch 
  "#DateFormat(currentsharecaredatetime, 'mmdd')#"
  !--- Record count ---
  cfif len(get_affected_records.recordcount) lt 6
  cfset record_difference = (6 -
  len(get_affected_records.recordcount))
  cfloop index="counter" from="1"
  to="#record_difference#"
  cfset batch = batch  "0"
  /cfloop
  cfset batch = batch 
  "#get_affected_records.recordcount#"
  cfelseif len(get_affected_records.recordcount) is
  6
  cfset batch = batch 
  "#get_affected_records.recordcount#"
  cfelseif len(get_affected_records.recordcount) gt
  6
  cfset batch = batch  "99"
  /cfif
  cfset batch_header_done = 1
  #batch#
  /cfif
 
  Thanks anyway guys
 
  John Stanley
 


~~
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



Re: Coldfusion vs. Jsp

2001-01-31 Thread Michael

So do you mean jsp pages are better then cfm pages?





"Rey Bango" [EMAIL PROTECTED] wrote in message
007101c08a3d$9e1cce60$0d0b320a@RBango">news:007101c08a3d$9e1cce60$0d0b320a@RBango...
  who branded Jsp?  

 Sun Microsystems.

  and which is better? 

 The one that allows you to provide the best  most comprehensive solution
 for your client or employer. Not being sarcastic. Just honest.

 Rey
 Team Allaire



 - Original Message -
 From: "Phoeun Pha" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Monday, January 29, 2001 3:39 PM
 Subject: Coldfusion vs. Jsp


  who branded Jsp?  and which is better?
 
 
 
 
  -Original Message-
  From: John Stanley [mailto:[EMAIL PROTECTED]]
  Sent: Monday, January 29, 2001 1:40 PM
  To: CF-Talk
  Subject: White Space -- Solution
 
 
  Again, as soon as I send the e-mail out; I figuire it out...
 
  I just needed to concatanate a variable with each segment of the output
 and
  then display the end result as such:
 
  1000129200119
 
  CODE SNIPPET
 
  cfif batch_header_done is 0
  !--- Create Batch Record ---
  !--- Transaction Type ---
  cfset batch= 1
  !--- Submitting facility code ---
  cfif len(check_billing.countycode) lt 2
  cfset county_difference = (2 -
  len(check_billing.countycode))
  cfloop index="counter" from="1"
  to="#county_difference#"
  cfset batch = batch  "0"
  /cfloop
  cfset batch = batch 
  "#check_billing.countycode#"
  cfelse
  cfset batch = batch 
  "#check_billing.countycode#"
  /cfif
  !--- Batch submission Date ---
  cfset batch = batch 
  "#DateFormat(currentsharecaredatetime, 'mmdd')#"
  !--- Record count ---
  cfif len(get_affected_records.recordcount) lt 6
  cfset record_difference = (6 -
  len(get_affected_records.recordcount))
  cfloop index="counter" from="1"
  to="#record_difference#"
  cfset batch = batch  "0"
  /cfloop
  cfset batch = batch 
  "#get_affected_records.recordcount#"
  cfelseif len(get_affected_records.recordcount) is
  6
  cfset batch = batch 
  "#get_affected_records.recordcount#"
  cfelseif len(get_affected_records.recordcount) gt
  6
  cfset batch = batch  "99"
  /cfif
  cfset batch_header_done = 1
  #batch#
  /cfif
 
  Thanks anyway guys
 
  John Stanley
 

~~
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



Re: Coldfusion vs. Jsp

2001-01-31 Thread Jeffry Houser


 err..

  I think he meant neither one is better.  Each one has it's strengths and weaknesses. 
 You should pick the one
that is weak where don't need functionality, and strong where you do.

  More often, however, you pick the one someone (probably in management) paid for.


Michael wrote:

 So do you mean jsp pages are better then cfm pages?

 "Rey Bango" [EMAIL PROTECTED] wrote in message
 007101c08a3d$9e1cce60$0d0b320a@RBango">news:007101c08a3d$9e1cce60$0d0b320a@RBango...
   who branded Jsp?  
 
  Sun Microsystems.
 
   and which is better? 
 
  The one that allows you to provide the best  most comprehensive solution
  for your client or employer. Not being sarcastic. Just honest.
 
  Rey
  Team Allaire
 
 
 
  - Original Message -
  From: "Phoeun Pha" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Monday, January 29, 2001 3:39 PM
  Subject: Coldfusion vs. Jsp
 
 
   who branded Jsp?  and which is better?
  
  
  
  
   -Original Message-
   From: John Stanley [mailto:[EMAIL PROTECTED]]
   Sent: Monday, January 29, 2001 1:40 PM
   To: CF-Talk
   Subject: White Space -- Solution
  
  
   Again, as soon as I send the e-mail out; I figuire it out...
  
   I just needed to concatanate a variable with each segment of the output
  and
   then display the end result as such:
  
   1000129200119
  
   CODE SNIPPET
  
   cfif batch_header_done is 0
   !--- Create Batch Record ---
   !--- Transaction Type ---
   cfset batch= 1
   !--- Submitting facility code ---
   cfif len(check_billing.countycode) lt 2
   cfset county_difference = (2 -
   len(check_billing.countycode))
   cfloop index="counter" from="1"
   to="#county_difference#"
   cfset batch = batch  "0"
   /cfloop
   cfset batch = batch 
   "#check_billing.countycode#"
   cfelse
   cfset batch = batch 
   "#check_billing.countycode#"
   /cfif
   !--- Batch submission Date ---
   cfset batch = batch 
   "#DateFormat(currentsharecaredatetime, 'mmdd')#"
   !--- Record count ---
   cfif len(get_affected_records.recordcount) lt 6
   cfset record_difference = (6 -
   len(get_affected_records.recordcount))
   cfloop index="counter" from="1"
   to="#record_difference#"
   cfset batch = batch  "0"
   /cfloop
   cfset batch = batch 
   "#get_affected_records.recordcount#"
   cfelseif len(get_affected_records.recordcount) is
   6
   cfset batch = batch 
   "#get_affected_records.recordcount#"
   cfelseif len(get_affected_records.recordcount) gt
   6
   cfset batch = batch  "99"
   /cfif
   cfset batch_header_done = 1
   #batch#
   /cfif
  
   Thanks anyway guys
  
   John Stanley
  
 

~~
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



RE: Coldfusion vs. Jsp

2001-01-31 Thread Steve Bernard

It's a "those with stars, and those without stars on thars" thing. ;)

Steve

-Original Message-
From: Michael [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 31, 2001 9:42 AM
To: CF-Talk
Subject: Re: Coldfusion vs. Jsp


So do you mean jsp pages are better then cfm pages?





"Rey Bango" [EMAIL PROTECTED] wrote in message
007101c08a3d$9e1cce60$0d0b320a@RBango">news:007101c08a3d$9e1cce60$0d0b320a@RBango...
  who branded Jsp?  

 Sun Microsystems.

  and which is better? 

 The one that allows you to provide the best  most comprehensive solution
 for your client or employer. Not being sarcastic. Just honest.

 Rey
 Team Allaire

~~
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



Re: Coldfusion vs. Jsp

2001-01-29 Thread Rey Bango

 who branded Jsp?  

Sun Microsystems.

 and which is better? 

The one that allows you to provide the best  most comprehensive solution
for your client or employer. Not being sarcastic. Just honest.

Rey
Team Allaire



- Original Message -
From: "Phoeun Pha" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, January 29, 2001 3:39 PM
Subject: Coldfusion vs. Jsp


 who branded Jsp?  and which is better?




 -Original Message-
 From: John Stanley [mailto:[EMAIL PROTECTED]]
 Sent: Monday, January 29, 2001 1:40 PM
 To: CF-Talk
 Subject: White Space -- Solution


 Again, as soon as I send the e-mail out; I figuire it out...

 I just needed to concatanate a variable with each segment of the output
and
 then display the end result as such:

 1000129200119

 CODE SNIPPET

 cfif batch_header_done is 0
 !--- Create Batch Record ---
 !--- Transaction Type ---
 cfset batch= 1
 !--- Submitting facility code ---
 cfif len(check_billing.countycode) lt 2
 cfset county_difference = (2 -
 len(check_billing.countycode))
 cfloop index="counter" from="1"
 to="#county_difference#"
 cfset batch = batch  "0"
 /cfloop
 cfset batch = batch 
 "#check_billing.countycode#"
 cfelse
 cfset batch = batch 
 "#check_billing.countycode#"
 /cfif
 !--- Batch submission Date ---
 cfset batch = batch 
 "#DateFormat(currentsharecaredatetime, 'mmdd')#"
 !--- Record count ---
 cfif len(get_affected_records.recordcount) lt 6
 cfset record_difference = (6 -
 len(get_affected_records.recordcount))
 cfloop index="counter" from="1"
 to="#record_difference#"
 cfset batch = batch  "0"
 /cfloop
 cfset batch = batch 
 "#get_affected_records.recordcount#"
 cfelseif len(get_affected_records.recordcount) is
 6
 cfset batch = batch 
 "#get_affected_records.recordcount#"
 cfelseif len(get_affected_records.recordcount) gt
 6
 cfset batch = batch  "99"
 /cfif
 cfset batch_header_done = 1
 #batch#
 /cfif

 Thanks anyway guys

 John Stanley

~~
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