OT: JSP newbie - need referer value in servlet

2002-05-30 Thread Jeff Brown
to harvest this value? Thanks! v/r, Jeff Brown __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk

damn Netscape 4.x!

2002-05-24 Thread Jeff Brown
. Can anyone think of some other reasons this might be happening?? Thanks! v/r, Jeff Brown RMC, Inc. 46970 Bradley Blvd., Suite B Lexington Park, MD 20653 voice: 301.862.7501 fax: 301.862.5759 __ Signup for the Fusion Authority

RE: Oracle query question

2002-05-24 Thread Jeff Brown
You're right, Oracle reads from the bottom up. It's good practice to place your most limiting conditions at the end of the where clause, and work your way up from there. v/r, Jeff -Original Message- From: Chris Lofback [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 10:34 AM To:

RE: Sorting a 2 dimensionl array

2002-05-24 Thread Jeff Brown
check out ArraySort() in the CF Docs... v/r, Jeff -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 2:58 PM To: CF-Talk Subject: Sorting a 2 dimensionl array Anyone have a ideas on how to sort a two dimentional array by one of the elements

RE: Sorting a 2 dimensionl array

2002-05-24 Thread Jeff Brown
dimensionl array That only does 1 dimensional arrays :) -Original Message- From: Jeff Brown [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 2:01 PM To: CF-Talk Subject: RE: Sorting a 2 dimensionl array check out ArraySort() in the CF Docs... v/r, Jeff -Original Message- From

page security using cfabort

2002-05-23 Thread Jeff Brown
I am planning on adding role based page level security to my application by adding this chunk of code to every page: body cfif ListFindNoCase(AllowedRole1,AllowedRole2,AllowedRole3, #session.user_role#, ,) EQ 0 You are not authorized to view this page. cfabort /cfif .. [page content]

RE: page security using cfabort

2002-05-23 Thread Jeff Brown
variables. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com - Original Message - From: Jeff Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 23, 2002 11:07 AM Subject: page security using cfabort I am planning

RE: page security using cfabort

2002-05-23 Thread Jeff Brown
Neil, is this a coding style thing, or are you implying it's going to break the code? v/r, Jeff -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 11:31 AM To: CF-Talk Subject: RE: page security using cfabort Also, but the underscore in the

RE: dynamic image

2002-05-23 Thread Jeff Brown
I saw a Dynamic Image Wizard-somethingrather in the Fireworks MX Preview Release... start there! v/r, Jeff -Original Message- From: LANCASTER, STEVEN M. (JSC-OL) (BAR) [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 12:38 PM To: CF-Talk Subject: dynamic image I want to create

RE: htmldoc.exe / cf_html2pdf3 reliability?

2002-05-23 Thread Jeff Brown
I also use it on a low-volume app and cf_html2pdf3 has worked very well... although the lack of CSS functionality is often a pisser. I remember a discussion from about a month ago in CF-Talk, someone told me that HTMLDOC.exe often left threads running on his server. Something to watch out for,

RE: Creating a list

2002-05-21 Thread Jeff Brown
Tony, This should work... cfset newlist = cfoutput query=YourQuery cfset newlist = ListAppend(newlist, field, ,) /cfoutput v/r, Jeff -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 4:51 PM To: CF-Talk Subject: Creating a list Is

RE: Apology

2002-05-20 Thread Jeff Brown
I've thought about this myself... even a filter in the Advanced Search section would be helpful. v/r, Jeff -Original Message- From: Eric Mathews [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 4:25 PM To: CF-Talk Subject: RE: Apology I'll see your vent and raise you this:

RE: SHA-1

2002-05-16 Thread Jeff Brown
CF_SHA_1 in the DevEx... -Original Message- From: Robert Weimer [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 4:21 PM To: CF-Talk Subject: SHA-1 We have a requirement to use SHA-1 encryption to store certain values within a MS SQL7 database. Does anyone know of a custom tag

RE: cf_html2PDF

2002-05-15 Thread Jeff Brown
Sal, Are you using Michael Shreiber's custom tag CF_HTML2PDF3? Or is it really called CF_HTML2PDF? CF_HTML2PDF3 uses easysw's HTMLDOC.EXE that Dave mentioned below. I have been using it for months, and it works well with GIF, JPG, and BMP. Have not had success with PNG, unfortunately. If

RE: cf_html2PDF

2002-05-15 Thread Jeff Brown
I remember looking at this solution once before, if my memory serves me correctly, it was something like $900?!? Is that right? v/r, Jeff -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 12:35 PM To: CF-Talk Subject: RE: cf_html2PDF You

RE: Reg Expression for IPs

2002-05-14 Thread Jeff Brown
Mark, How about this...? cfoutput cfif #Val(ListGetAt(cgi.remote_addr, 3, .))# GTE 32 AND #Val(ListGetAt(cgi.remote_addr, 3, .))# LTE 68 (do something) cfelse (do something else) /cfif /cfoutput v/r, Jeff -Original Message-

RE: Computer Professionals / Cold Fusion Programmer

2002-05-14 Thread Jeff Brown
i know the questions are coming, here are the answers. IANAL: I Am Not A Lawyer IE: Id Est (Latin: That Is) IIRC: If I Recall/Remember Correctly chris, i think you do this on purpose! v/r, Jeff -Original Message- From: Christopher Olive [mailto:[EMAIL PROTECTED]] Sent:

RE: Form.FIELDNAME - error!!!!

2002-05-09 Thread Jeff Brown
make sure you're in a cfoutput... v/r, Jeff -Original Message- From: Chakka, Sudheer [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 4:16 PM To: CF-Talk Subject: Form.FIELDNAME - error Hi, Can any one tell me what is the mistake in CFLOOP FROM=1

RE: Form.FIELDNAME - error!!!!

2002-05-09 Thread Jeff Brown
i take that back, that shouldn't matter. -Original Message- From: Jeff Brown [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 4:27 PM To: CF-Talk Subject: RE: Form.FIELDNAME - error make sure you're in a cfoutput... v/r, Jeff -Original Message- From: Chakka

RE: Windows NT error number 232 occurred

2002-05-02 Thread Jeff Brown
Upgrade your MDAC to version 2.7 on the server, it solved the problem for me. v/r, Jeff -Original Message- From: Simon Halcrow [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 02, 2002 1:30 PM To: CF-Talk Subject: Re: Windows NT error number 232 occurred Hi Joe. We get this all the

RE: Windows NT error number 232 occurred (appendix A)

2002-05-02 Thread Jeff Brown
Sorry, should have included this link in the last post... You can check your current version of MDAC using this tool: http://www.microsoft.com/data/download.htm#CCinfo good luck, Jeff -Original Message- From: Simon Halcrow [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 02, 2002 1:30

RE: Html to PDF, Excel, Word formats

2002-05-01 Thread Jeff Brown
I recommend checking out CF_HTML2PDF3 (can be found in the DevEx), a free Custom Tag that generates PDF files. Tried and tested, and very easy to implement. This tag utilizes HTMLDOC.EXE, and you must have CFEXECUTE access on your server. My only gripe is that it does not support CSS. v/r,

RE: sql query

2002-05-01 Thread Jeff Brown
The example below seems easier, but you could also: cfset ssn_formatted = Left(ssn, 3)-Mid(ssn, 4, 2)-Right(ssn, 3) v/r, Jeff -Original Message- From: BEN MORRIS [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 9:20 AM To: CF-Talk Subject: Re: sql query All you need is the

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Jeff Brown
as far as i know -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 2:17 PM To: CF-Talk Subject: RE: Distributing self-contained CFMX apps AFAIK, JRun is the Web Appliication server, the Standalone web server is used in lieu of a web server

RE: Query Problem

2002-04-30 Thread Jeff Brown
also, make sure Card_Type is really the name of the field (check spelling) in the table tblCardData. this is the error i always see when i misspell a field name. not that it happens often... :) v/r, Jeff -Original Message- From: Paul Bowley [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Struct in an array

2002-04-30 Thread Jeff Brown
I am having a problem appending a struct to an array... from the examples posted at: http://www.macromedia.com/v1/handlers/index.cfm?id=18894method=full#2 it looks to me as if I'm doing it correctly. The error message states that One dimensional arrays can store any value types... the array

RE: CFStudio DWMX hiccups

2002-04-30 Thread Jeff Brown
who can tell me how to set the Outline Current Line option in the DWMX window? v/r, Jeff -Original Message- From: Erika L Walker-Arnold [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 2:04 PM To: CF-Talk Subject: RE: CFStudio DWMX hiccups Here's a BAD hiccup. I have a file

RE: CFStudio DWMX hiccups

2002-04-30 Thread Jeff Brown
I will assume you are responding to my question about the Outline Current Line option. Why did this one go away, just not enough interest? I know I can't be the only one using it, Simon Horwith where are you? Back me up. I will be sad to see this feature go. v/r, Jeff Brown -Original

Reclaiming Ctrl-3 (was: RE: CFStudio DWMX hiccups)

2002-04-30 Thread Jeff Brown
Here are the steps to get your Ctrl-3 back: 1. Edit - Keyboard Shortcuts 2. Select Menu Commands in the commands select box 3. Expand Insert 4. Expand CF Basic Objects 5. Select Surround with #'s 6. In the Press Key text field, hit Ctrl-3 7. Hit the Change Button v/r, Jeff -Original

RE: CFMX performance (was RE: CF MX)

2002-04-29 Thread Jeff Brown
i thought that was a urinal biscuit... v/r, Jeff -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 1:44 PM To: CF-Talk Subject: RE: CFMX performance (was RE: CF MX) ok I'll bite - what's a stall muffin that's not the little

Converting CF to JSP

2002-04-29 Thread Jeff Brown
pages to JSP? Thanks! http://www.eknowlogie.com/ek-cf-to-jsp.htm v/r, Jeff Brown __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http

RE: SQL Query

2002-04-26 Thread Jeff Brown
wouldn't this be an OUTER JOIN LEFT? v/r, Jeff -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 8:49 AM To: CF-Talk Subject: SQL Query I need this query to pull the reg_no, dis_no, m_id, and the y_id from tbl_CTMCORPMONTHYEARRDD where it

RE: isNumeric Trivia

2002-04-26 Thread Jeff Brown
probably treating the 'e' as exponent. as for the 'd' not a freaking clue! -Jeff -Original Message- From: Kent Bulmer [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 4:28 PM To: CF-Talk Subject: isNumeric Trivia Pardon me if this has been covered before but why does the

RE: previous cfm page

2002-04-26 Thread Jeff Brown
Ryan, cgi.HTTP_REFERER works... v/r, Jeff -Original Message- From: Ryan Pieszak [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 3:35 PM To: CF-Talk Subject: previous cfm page Hello all, Is there a cgi variable I could use to tell what page a user came from? Or maybe a way to

Converting CF to JSP

2002-04-25 Thread Jeff Brown
-to-jsp.htm v/r, Jeff Brown __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail

eKnowlogie CF to JSP Migrator

2002-04-24 Thread Jeff Brown
Anyone have any experience using this eKnowlogie CF-JSP migration tool? Or... could anyone recommend a tool that would take some of the grunt work out of converting some CF pages to JSP? Thanks! http://www.eknowlogie.com/ek-cf-to-jsp.htm v/r, Jeff Brown FAQ: http://www.thenetprofits.co.uk

RE: 2 Zip or Not 2 Zip

2002-04-24 Thread Jeff Brown
agreed... it's not feasible to just display the text file on the screen, or email? i.e. receipt / order confirmation. -Jeff -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 3:21 PM To: CF-Talk Subject: Re: 2 Zip or Not 2 Zip That is

RE: 2 Zip or Not 2 Zip

2002-04-24 Thread Jeff Brown
sounds like you need a ZIP! what's the programmer's gripe? a self-extracting zip would make it pretty intuitive for the customer. file size is not an issue... is he just concerned that there will be an extra step involved? -Jeff -Original Message- From: Owens, Howard [mailto:[EMAIL

OT: IIS 5.0 and server-side RAM cache?

2002-04-04 Thread Jeff Brown
, please cc: [EMAIL PROTECTED] in your replies to the list. I am subscribed to the digest. Thanks in advance!! v/r, Jeff Brown FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm

HTML comments and tag completion

2002-03-29 Thread Jeff Brown
, as I am subscribed to the digest version of this list. Thanks in advance! v/r, Jeff Brown http://www.secret-plans.com/ FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar

RE: HTML comments and tag completion

2002-03-29 Thread Jeff Brown
, !-- and !--- are not listed. Any ideas anyone? I don't want to turn off tag completion entirely, just disable it for the !--- and !-- tags. Please CC: [EMAIL PROTECTED] in your response, as I am subscribed to the digest version of this list. Thanks in advance! v/r, Jeff Brown http

Vertical Text

2002-02-06 Thread Jeff Brown
Any ideas on how I might display text vertically using either CF or CSS? Without stacking the letters using br's and without creating graphics. The text displayed vertically will be dynamic... it's looking like it might not be possible...? Thanks! v/r, Jeff FAQ: