RE: line break as delimiter

2000-07-06 Thread jstiefel
cfloop index="i" list="#IM_List#" delimiters="#Chr(13)##Chr(10)#" Or, for just a linefeed, use Chr(10) -Original Message- From: Eli Shechter [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 06, 2000 11:31 AM To: [EMAIL PROTECTED] Subject: line break as delimiter Hi im trying to run a

RE: How the heck can I do this?

2000-07-06 Thread jstiefel
Jennifer- You don't need to carry your own counter. The queryName.CurrentRow variable stores it for you during a cfloop query="queryName" or cfoutput query="queryName" -Original Message- From: Jennifer [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 06, 2000 12:00 PM To: [EMAIL

RE: Oracle vs SQL server

2000-06-21 Thread jstiefel
Free on Linux even. ;-) -Original Message- From: Judah McAuley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 21, 2000 12:05 PM To: [EMAIL PROTECTED] Subject: Re: Oracle vs SQL server At 01:18 PM 6/21/2000 +0200, you wrote: Hi everyone. We're using SQL server 7.0 and it's working

RE: CF vs. Oracle Application Server

2000-06-06 Thread jstiefel
Well, it's like 60k for OAP, and 7k for CF Enterprise. It will cost you twice as much for labor in development on OAP. Nuff' said? -Original Message- From: Troy Simpson [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 01, 2000 4:04 PM To: cf-talk Subject: CF vs. Oracle Application Server

RE: Automatic password Generation

2000-05-30 Thread jstiefel
Why not download the tag and use it? -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 30, 2000 4:01 PM To: [EMAIL PROTECTED] Subject: Automatic password Generation This is a multi-part message in MIME format.

RE: benefits of Enterprise without ClusterCats?

2000-05-25 Thread jstiefel
If you're connecting to Oracle, you'll need Enterprise to take advantage of the native drivers. They're MUCH faster than ODBC. -Original Message- From: Greg Saunders [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 25, 2000 10:31 AM To: [EMAIL PROTECTED] Subject: benefits of Enterprise

RE: Determining a browsers SSL encryption level

2000-05-25 Thread jstiefel
This doesn't seem to be working on NES. Any ideas? -Original Message- From: Mike Sheldon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 24, 2000 7:43 PM To: [EMAIL PROTECTED] Subject: RE: Determining a browsers SSL encryption level CGI.HTTPS_KEYSIZE Michael J. Sheldon Internet

RE: WDDX OR XML News Feeds

2000-05-25 Thread jstiefel
That should work fine, but I would make sure to cache the contents and not request it for each pageview... Are you having problems? You could cache it easily using: cfwddx output="mynews" cfset Application.myNews = myNews cfset Application.myNewsExpires = CreateTimeSpan(blah) Check the

Determining a browsers SSL encryption level

2000-05-24 Thread jstiefel
Anyone know a way to find a clients SSL encryption level? (Short of using BrowserHawk, please.) thanks! Jason Stiefel Software Engineer iXL, Inc. 1930 Camden Road, Suite 2070 Charlotte, NC 28203 tel. 704.943.7000 fax. 704.943.7001 [EMAIL PROTECTED]

RE: Could request alleviate locking concerns?

2000-05-19 Thread jstiefel
David: Server CGI Application Request Session Client Variables Are the ones that matter... I don't know if you can call "Cookie" a scope. Maybe... -Original Message- From: David Cummins Sent: Thursday, May 18, 2000 6:32 PM To: [EMAIL PROTECTED] Subject: Re: Could request alleviate

RE: Could request alleviate locking concerns?

2000-05-19 Thread jstiefel
I don't consider it a a to bypass any protection. I believe the purpose of request is to provide a global scope for a single request on the server. -Original Message- From: David Gassner [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 10:33 PM To: [EMAIL PROTECTED] Subject: RE:

RE: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-17 Thread jstiefel
Unless you consider the fact that Apple has a bad habit of not supporting other platforms. I don't know many hosting providers who run mac systems either. -Original Message- From: Abe V. S. Troel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 17, 2000 12:00 PM To: [EMAIL PROTECTED]

RE: Weather Revisited

2000-05-16 Thread jstiefel
If you use CFSCHEDULE to kick off an application scoped query, keep in mind it will more than likely not be available in your actual application. I have yet to figure out what application CFSCHEDULE executed code is placed in, even if I use a CFAPPLICATION at the top of the file. Anyone else

RE: Slightly OT: Lighten things up a little

2000-05-15 Thread jstiefel
Or what about: "My fridge was down all weekend from that damn ILOVEYOU worm." ;-) -Original Message- From: Brian L. Wolfsohn [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 9:24 AM To: [EMAIL PROTECTED] Subject: Re: Slightly OT: Lighten things up a little At 12:11 PM 5/14/00 ,

RE: Debugging CFCONTENT/CFHEADER problems

2000-05-12 Thread jstiefel
Coolfusion.com has a great tool called httpAnalyzer. -Original Message- From: Reed Powell [mailto:[EMAIL PROTECTED]] Sent: Friday, May 12, 2000 11:16 AM To: [EMAIL PROTECTED] Subject: Debugging CFCONTENT/CFHEADER problems Has anyone seen any utilities that would run on the client PC

RE: NEQ problems. Why?

2000-05-11 Thread jstiefel
Well, NEQ is a ColdFusion operator, and "" is a SQL operator. The code you place in a cfquery tag is sent to the database as SQL. -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 11, 2000 9:13 AM To: '[EMAIL PROTECTED]' Subject: RE: NEQ problems. Why?

RE: Question(banging my head against a wal)

2000-05-11 Thread jstiefel
I do this for debugging queries: table border="1" tr cfloop list="#myquery.ColumnList#" index="i" tdcfoutput#i#/cfoutput/td /cfloop /tr cfoutput query="myquery" tr cfif not CurrentRow mod

RE: how do you have a static picture in the background

2000-05-10 Thread jstiefel
In IE this is possible by setting bgproperties in the body tag: body bgproperties="fixed" background="myimage.gif" But as far as I know, netscape will ignore this.. -Original Message- From: aslam bajaria [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 10, 2000 10:46 AM To: [EMAIL

RE: DateCompare()

2000-05-08 Thread jstiefel
Can you not do it with SQL? I would try: cfquery select id fromtable where #Now()# between datecolumn1 and datecolumn2 /cfquery if you get a record back (i.e. recordcount gt 0) then it matched? -Original Message- From: Todd Ashworth

RE: Requirements for Access 2000

2000-05-04 Thread jstiefel
ColdFusion actually ships with the MDAC, which will allow you to connect to msoft access after installing. Check your $CFUSION\MDAC directory. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 04, 2000 12:34 PM To: [EMAIL PROTECTED] Subject: RE:

RE: Forcing a query refresh

2000-05-03 Thread jstiefel
Trusted cache has nothing to do with queries. It relates only to the physical copy of .cfm files. -Original Message- From: Olaf Gradin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 03, 2000 12:53 PM To: [EMAIL PROTECTED] Subject: Re: Forcing a query refresh One way is to turn the

RE: Forcing a query refresh

2000-05-03 Thread jstiefel
Doug- If the browser doesn't request the page, then the query won't be run regardless of what you've done for "work-arounds" on the server side. The meta tag is just about the only way to guarantee that every pageview will result in the query being run. -Original Message- From: [EMAIL

RE: Forcing a query refresh

2000-05-03 Thread jstiefel
Doug- If I were in your shoes, I would load the data into an application structure. Hitting your db for every banner request will quickly bring the system to its knees. You could simply create an array in the application scope, and use that as your database "table". -Original Message-

RE: Forcing a query refresh

2000-05-03 Thread jstiefel
Kelly Doug- I wouldn't suggest unchecking the maintain database connection box. You'll already be taking a performance hit with this query being run on each page, by unchecking that box you'll be telling coldfusion to: Connect to the db Run the SQL DisConnect from the db Are you not concerned

ColdFusion and MQSeries

2000-04-25 Thread jstiefel
Anyone done anything with ColdFusion and MQSeries (from IBM)? We're looking for ANYTHING you can give on this one! thanks! Jason Stiefel Software Engineer iXL, Inc. 1930 Camden Road, Suite 2070 Charlotte, NC 28203 tel. 704.943.7000 fax. 704.943.7001 [EMAIL PROTECTED]

RE: What's the use of structures, anyway?

2000-04-20 Thread jstiefel
You seem to be missing something here. Structure's can be nested to the Nth level: cfscript access_flags = StructNew(); access_flags["is_superuser"] = StructNew(); access_flags["is_superuser"].default_value = 0; access_flags["is_superuser"].description = "Is this

RE: Changing Domain Names

2000-04-17 Thread jstiefel
Cgi.Server_Name should give you the info you're looking for... -Original Message- From: Andrew C. Davis [mailto:[EMAIL PROTECTED]] Sent: Monday, April 17, 2000 1:30 PM To: Cold Fusion List Subject: Changing Domain Names I've changed domain names one my sites from www.site1.com to

RE: Text Editors vs Site Editors

2000-04-13 Thread jstiefel
Also, I'm paying these people a nice little chunk of money, and it is more than a little irritating to watch them spend 30 minutes hand typing all the field name for a long query that they could create in the builder in 30 seconds. That's sort of an amusing statement really. What you are

RE: Query Caching

2000-04-13 Thread jstiefel
Name your query in the Session Scope: cfquery name="Session.Permissions" datasource="blah" select blah /cfquery I would do this in the application.cfm to make sure it's always available, but make sure it only runs once per session: cfif not isDefined("Session.Permissions")

RE: Fusebox or not Fusebox that is the question...

2000-04-13 Thread jstiefel
Join the Fusebox-talk list for this question.. I think everyone will agree it's beyond the scope of cf-talk.. -Original Message- From: Bill Killillay [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 13, 2000 11:20 AM To: [EMAIL PROTECTED] Subject: RE: Fusebox or not Fusebox that is the

RE: ColdFusion Debugging

2000-04-13 Thread jstiefel
You can output your own execution time: At the top of your template (possibly in application.cfm): cfset Request.iExeTime = GetTickCount() Now at the bottom of your page: cfoutputExecution Time: #Evaluate(GetTickCount() - Request.iExeTime)#/cfoutput Format however you'd like...

RE: Text Editors vs Site Editors Version 2

2000-04-13 Thread jstiefel
I've been using UltraEdit 32 for a few years now, and love it for it's simplicity. The things that get me about studio is exactly what you mentioned: memory consumption, wasted screen space for useless functions, and the list goes on. There are quite a few other developers here at iXL that live

RE: Query Caching

2000-04-13 Thread jstiefel
No, actually Client variables are stored in the registry, and there is now an option to store them in an ODBC datasource. Session variables are stored in memory along with all the other scopes. -Original Message- From: Judah McAuley [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 13,

RE: Integer?

2000-04-12 Thread jstiefel
You missed a previous message where I stated that isNumeric() will return true with any string that contains (0-9) i.e. ReFind("(0-9)","012345678") is identical to isNumeric("012345678"). However, try using "012345678" with the Mod operator, and it will tell you that it can't be converted to an

RE: Is 4.5.1 Solid

2000-04-12 Thread jstiefel
Rueben- I won't touch the "AOL'ers are stupid" stuff, but I will make comment on your statement that "AOL is just an ISP like any other". I beleive this to be very much false. AOL does not act like a traditional ISP where they are a simple gateway to the internet, without filtering and/or

RE: using cfcontent

2000-04-12 Thread jstiefel
When you link to the page with the cfcontent, use the following format: /mysite/mycfcontentpage.cfm/file.zip And the file will come down as "file.zip" -Original Message- From: Mark Yim [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 8:08 PM To: '[EMAIL PROTECTED]' Subject:

RE: Stock ticker

2000-04-11 Thread jstiefel
if the owner of the content does not specifically allow syndication, then it's theft! -Original Message- From: Steve Reich [mailto:[EMAIL PROTECTED]] Sent: Monday, April 10, 2000 4:13 PM To: [EMAIL PROTECTED] Subject: RE: Stock ticker Also illegal if it grabs from yahoo or something.

RE: Stock ticker

2000-04-11 Thread jstiefel
Yahoo PAYED for their stock market feed. By stealing the content from their site, you're taking money from both their pockets, and whoever they get their feed from.. -Original Message- From: Steve Reich [mailto:[EMAIL PROTECTED]] Sent: Monday, April 10, 2000 4:30 PM To: [EMAIL PROTECTED]

Integer?

2000-04-11 Thread jstiefel
Hopefully someone can shed some light on this. I've got a field where I'm looking for an integer. I then need to verify that this field is in an increment of 100: cfif form.myField Mod 100 It's not an increment of 100! /cfif Alrighty, that works fine, unless I enter a non-integer in the

RE: REM out CF codes

2000-04-11 Thread jstiefel
Use the C/Java style "//" to comment a line in CFSCRIPT. -Original Message- From: David E. Crawford [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 9:53 AM To: [EMAIL PROTECTED] Subject: Re: REM out CF codes similar to HTML remarks, however, they are slightly different !---

RE: Slightly OT: DHTML and z-index

2000-04-11 Thread jstiefel
In IE form elements will ALWAYS appear above your other div, regardless of z-index... Everyone chant with me now: "It's a feature, not a bug." -Original Message- From: Mike Murry [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 8:53 AM To: '[EMAIL PROTECTED]' Subject: RE:

RE: Integer?

2000-04-11 Thread jstiefel
How could a number "01234567890" be an integer? It's not even a real number! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 10:28 AM To: [EMAIL PROTECTED] Subject: RE: Integer? Well, "01234567890" _is_ an integer, unless the rules

RE: OT empty list items aren't counted?

2000-04-11 Thread jstiefel
One might ask why this is a problem? If you've got a need for null values, then use an array. A good developer knows when to use different datatypes. ;-) -Original Message- From: Douglas Blocker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 11, 2000 11:55 AM To: [EMAIL PROTECTED]

RE: CF and

2000-04-10 Thread jstiefel
Studio is repeating the last character of your file. Add a carriage return at the end, and you won't have to worry about it anymore. -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: Monday, April 10, 2000 9:59 AM To: [EMAIL PROTECTED] Subject: CF and I was

RE: Is 4.5.1 Solid

2000-04-10 Thread jstiefel
I should try to inflict our QA group here on Allaire as they NEVER LET ME GET AWAY WITH ANYTHING!!! ;-) -Original Message- From: WBB [mailto:[EMAIL PROTECTED]] Sent: Monday, April 10, 2000 12:03 PM To: [EMAIL PROTECTED] Subject: Re: Is 4.5.1 Solid Hi Dick, We upgraded to 4.51 and it

RE: Stock ticker

2000-04-10 Thread jstiefel
Also illegal if it grabs from yahoo or something. -Original Message- From: Steve Reich [mailto:[EMAIL PROTECTED]] Sent: Monday, April 10, 2000 2:44 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: Stock ticker Try StockGrabber.. it's a free CF custom tag and works great!

RE: Storage Fees

2000-04-07 Thread jstiefel
Store it? Well, a 30gig IDE drive will run you about $250 these days. What are they wanting to do with the data? Are you providing access to it via your internet connection? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 06, 2000 5:50 PM To:

RE: Highlighting single item in SELECT

2000-04-07 Thread jstiefel
option style="color: red;"#GetStuff.Name#/option -Original Message- From: Thomas Soraoka [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 06, 2000 6:22 PM To: CF-Talk (E-mail) Subject: Highlighting single item in SELECT Anyone know how to change the color of a single item in a SELECT

RE: Table row formating???

2000-04-06 Thread jstiefel
cfloop from="1" to="#myQuery.RecordCount#" index="i" step="3" tr tdmyQuery.Column[i-2]/td tdmyQuery.Column[i-1]/td tdmyQuery.Column[i]/td /tr /cfloop Sort of corny, but it'll work. ;-) -Original Message- From: [EMAIL

RE: PROBLEM with SingleQuote in SQL evaluate Insert

2000-04-06 Thread jstiefel
Is there a reason you wouldn't use an array here? i.e. formstring = ArrayNew(1); formstring[1] = "intel's processor"; cfoutput#formstring[1]#/cfoutput -Original Message- From: stephen holland chang [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 06, 2000 1:29 PM To: [EMAIL

WAS- RE: Surveys NOW - Session variables are your friends!

2000-04-04 Thread jstiefel
Session vars chew up a ton of memory? I would have to disagree with this, at this statement could put a negative view of session vars for new CF developers. Session variables use no more memory than any other variable available to you on the ColdFusion server. And in this day and age where web

RE: Help with mandetory imput form field

2000-04-03 Thread jstiefel
Potty mouth! -Original Message- From: Interent Gold Coast Properties [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 03, 1999 8:41 AM To: [EMAIL PROTECTED] Subject: Help with mandetory imput form field I am having problems with my cf select command where I want the system to check

RE: Help with mandetory imput form field

2000-04-03 Thread jstiefel
Also- is it "Internet Gold Coast Properties", or "Interent Gold Coast Properties" .. ;-) Try putting an option value="#PropertyCategoryDropDown.PropertyCategory#"#PropertyCategoryDropDow n.PropertyCategory#/option -Original Message- From: Interent Gold Coast Properties [mailto:[EMAIL

RE: View-Source in IE

2000-04-03 Thread jstiefel
How about avoiding CFHTTP requests to your own box? Check out the cf_exec tag, which executes code and places the output in a variable (i.e ThisTag.GeneratedContent = Caller.Output), then write that to a file. There's nothing worse than a ColdFusion script that multiplies it's load on the server!

RE: Surveys

2000-04-03 Thread jstiefel
Just keep the variables from previous pages in hidden form variables. i.e. input type="hidden" name="VariableFromPreviousPage" value="#form.VariableFromPreviousPage#" -Original Message- From: Miriam Hirschman [mailto:[EMAIL PROTECTED]] Sent: Monday, April 03, 2000 1:04 PM To: CF Forum

RE: Connection Failed

2000-04-03 Thread jstiefel
CFCACHE uses an CFHTTP connection back to your server to cache the file (AN EXTRAORDINARILY INEFFICIENT METHOD, if you ask me.) You could have possibly run out of available connections, or you've got your cf server set to a low number of concurrent connections. -Original Message- From:

RE: Alternating the color of table rows

2000-03-31 Thread jstiefel
iif(CurrentRow mod 2,DE("Silver"),DE("White")) works fine. Is this what you mean by "custom defined color" ? -Original Message- From: Stephen M. Aylor [mailto:[EMAIL PROTECTED]] Sent: Friday, March 31, 2000 12:28 PM To: [EMAIL PROTECTED] Subject: Re: Alternating the color of table rows

RE: 237 checkboxes

2000-03-30 Thread jstiefel
I wonder who is filling out the 237 question survey, and whether they're getting paid! ;-) Have you considered creating some sort of "profile" to search the survey results by? It'll take just as long to harvest the data as it did to fill it out! And imagine selecting your options all the way down

RE: query date problem

2000-03-29 Thread jstiefel
Wrap CreateODBCDate around it: Where NewDateArc #CreateODBCDate(Now())# However, remember that by using Now(), you're specifying everything older than the date _to the second_ -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 29, 2000 2:26 PM To: [EMAIL

RE: DSNless connections

2000-03-28 Thread jstiefel
You could create a "wrapper" in Java or C++ (or even VB for that matter) and use it to pass your SQL to the db. I'm curious- what's the need for a dsnless connection? -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 29, 2000 9:18 AM To: [EMAIL

RE: Naming Variables

2000-03-27 Thread jstiefel
I'm beginning to like the way Allaire's naming convention... sVar = string bVar = boolean stVar = structure qVar = query iVar = integer etc.. -Original Message- From: Allen [mailto:[EMAIL PROTECTED]] Sent: Monday, March 27, 2000 1:14 PM To: [EMAIL PROTECTED] Subject: Naming Variables

RE: Calendar CFM

2000-03-27 Thread jstiefel
You can check out instaCalendar on the allaire tag gallery.. -Original Message- From: Ray, James A [mailto:[EMAIL PROTECTED]] Sent: Monday, March 27, 2000 1:47 PM To: [EMAIL PROTECTED] Subject: Calendar CFM Does anyone have a nice Calendar program written in CF? Thanks Jim Ray Delta

RE: Password protected directories

2000-03-27 Thread jstiefel
You can use ValueList(getids.id) to create a list of ids from the query, no need to loop for that. -Original Message- From: Vinicius Caldeira Carvalho [mailto:[EMAIL PROTECTED]] Sent: Monday, March 27, 2000 3:07 PM To: [EMAIL PROTECTED] Subject: Re: Password protected directories If