Free CF Hosting on Linux

2002-02-10 Thread nagraj
Hai CFer's, Is there any company give free hosting for developer to test there application using CF on Linux Environment.? Any help ? Rgds Nagraj __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB

Re: Detecting file-types on upload

2002-02-10 Thread W Luke
Thanks for that idea Bruce - dunno why I didn't think of that. Programmer's block :( Will - Original Message - From: Bruce Sorge [EMAIL PROTECTED] Newsgroups: gradwell.lists.cftalk Sent: Sunday, February 10, 2002 3:01 AM Subject: Re: Detecting file-types on upload How about using

OT: table advice

2002-02-10 Thread W Luke
Hi, Apologies for the OT, and the very basic question, but I'm stuck. All I want to do is display 3 photos in a row at a time, then create a new row, display 3 more, and so on, to the end of the recordset. I've completely forgotten what I need to do! This is my table as it stands which is

Re: OT: table advice

2002-02-10 Thread Jochem van Dieten
W Luke wrote: Hi, Apologies for the OT, and the very basic question, but I'm stuck. All I want to do is display 3 photos in a row at a time, then create a new row, display 3 more, and so on, to the end of the recordset. I've completely forgotten what I need to do!

Re: OT: table advice

2002-02-10 Thread W Luke
- Original Message - From: Jochem van Dieten [EMAIL PROTECTED] Apologies for the OT, and the very basic question, but I'm stuck. All I want to do is display 3 photos in a row at a time, then create a new row, display 3 more, and so on, to the end of the recordset. I've completely

Message board question

2002-02-10 Thread Douglas Brown
This is probably easy, but it eluding me. I have a message board that I want to set up to handle multiple websites residing on the same server. Each site would be able to have their own topics, sub-topics etc. How can I handle this? I have a siteID in my tables, but not sure how I should work

apache web server

2002-02-10 Thread JIM
been using pws for years , trying to set up apache web server on a win98 box for dev and not sure how to get it to output cfm files. It outputs htm ok. Cfm is in the mime types.. not sure how to do it any help would be much appreciated. Jim

Re: apache web server

2002-02-10 Thread Douglas Brown
Step 1 - Locate httpd.conf In the directory that apache was installed in (Typically c:\program files\Apache Group\Apache) look for the conf directory. In the conf directory you should find several files that end in .conf open up httpd.conf with notepad. Step 2 - Locate

Re: apache web server

2002-02-10 Thread Stephen Judd
There's a module (ApacheModuleColdFusion.dll) that's on the CF CD that needs to be placed in the \Apache\modules folder. Then put: LoadModule coldfusion_module modules/ApacheModuleColdFusion.dll at the end of the DSO support section of the Apache httpd file. SJ At 11:27 AM 2/10/2002

RE: apache web server

2002-02-10 Thread JIM
thanks a million Douglas -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 11:55 AM To: CF-Talk Subject: Re: apache web server Step 1 - Locate httpd.conf In the directory that apache was installed in (Typically c:\program files\Apache

Re: apache web server

2002-02-10 Thread Birgit Pauli-Haack
there you find some instructions information http://www.macromedia.com/v1/handlers/index.cfm?ID=3882Method=Full hope this helps:-)) Birgit Sunday, February 10, 2002, 1:27:14 PM, you wrote: J been using pws for years , trying to set up apache web server on a win98 box J for dev and not

Re: apache web server

2002-02-10 Thread Douglas Brown
I'll take that million in US Dollars :-D There are two major products that come out of Berkeley: LSD and [Unix] BSD. We don't believe this to be a coincidence. Doug Brown - Original Message - From: JIM [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, February

RE: apache web server

2002-02-10 Thread JIM
How 'bout KUDOS :) Jim -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 12:03 PM To: CF-Talk Subject: Re: apache web server I'll take that million in US Dollars :-D There are two major products that come out of Berkeley: LSD

RE: apache web server

2002-02-10 Thread JIM
where do i set the default document mime type? -Original Message- From: JIM [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 12:08 PM To: CF-Talk Subject: RE: apache web server How 'bout KUDOS :) Jim -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]]

Simple Newbie Question

2002-02-10 Thread Jim Vosika
If I want to do a ReplaceNoCase()function where I am replacing color=#ff with something else how do I let CF know that I am replacing a # sign and that it is not a variable?? Jim Vosika SoftwareSuperMall.Com __ Get Your

RE: Simple Newbie Question

2002-02-10 Thread Ben Forta
Escape it with ## -Original Message- From: Jim Vosika [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 2:26 PM To: CF-Talk Subject: Simple Newbie Question If I want to do a ReplaceNoCase()function where I am replacing color=#ff with something else how do I let CF know

ODBC vs. OLEDB

2002-02-10 Thread Scott Van Vliet
I have always heard that connecting to a SQL Server database is faster through OLEDB, rather than using an ODBC DSN. However, after testing my app against the two methods, I found that the page processing time was almost identical (with ODBC even being faster at times!). If you can shed any

RE: Simple Newbie Question

2002-02-10 Thread Jim Vosika
I guess I don't understand what you are saying, do you mean like: cfset variables.test = #ReplaceNoCase(cfhttp.filecontent, color=###ff, new, ALL)# When I tried it this way I got an error: Invalid parser construct found on line 6 at position 11. ColdFusion was looking at the following text:

RE: Simple Newbie Question

2002-02-10 Thread Ben Forta
cfset variables.test = ReplaceNoCase(cfhttp.filecontent, color=##ff, new, ALL) -Original Message- From: Jim Vosika [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 2:39 PM To: CF-Talk Subject: RE: Simple Newbie Question I guess I don't understand what you are saying, do

Re: Simple Newbie Question

2002-02-10 Thread Douglas Brown
You have a typo color=###ff, new, ALL)# should be color=##ff, new, ALL)# There are two major products that come out of Berkeley: LSD and [Unix] BSD. We don't believe this to be a coincidence. Doug Brown - Original Message - From: Jim Vosika [EMAIL PROTECTED] To: CF-Talk

RE: Simple Newbie Question

2002-02-10 Thread Jim Vosika
That works! Thanks for your help. -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 1:40 PM To: CF-Talk Subject: RE: Simple Newbie Question cfset variables.test = ReplaceNoCase(cfhttp.filecontent, color=##ff, new, ALL) -Original

Re: apache web server

2002-02-10 Thread Douglas Brown
here is some reading material http://www.pair.com/pair/support/tutorials/webserver.html There are two major products that come out of Berkeley: LSD and [Unix] BSD. We don't believe this to be a coincidence. Doug Brown - Original Message - From: JIM [EMAIL PROTECTED] To: CF-Talk

RE: Projects feature of Studio??

2002-02-10 Thread Claudia Hoag
I've used Projects when using Source Safe, just so that I could check in and check out files without leaving CFStudio. But then I found it so much faster to check in / check out directly in Source Safe, I don't use Projects anymore... At 02:41 PM 2/9/2002 -0500, you wrote: Just curious, do

Re: ODBC vs. OLEDB

2002-02-10 Thread Jochem van Dieten
Scott Van Vliet wrote: I have always heard that connecting to a SQL Server database is faster through OLEDB, rather than using an ODBC DSN. However, after testing my app against the two methods, I found that the page processing time was almost identical (with ODBC even being faster at

RE: ODBC vs. OLEDB

2002-02-10 Thread Ben Forta
I have to agree with Jochem there, I have run my own tests on occasion and have yet to see any substantial benefit one way or another. --- Ben -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 3:22 PM To: CF-Talk Subject: Re: ODBC

RE: apache web server

2002-02-10 Thread JIM
doug I dont find where to set the default documents -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 1:10 PM To: CF-Talk Subject: Re: apache web server here is some reading material

RE: apache web server

2002-02-10 Thread JIM
is this right DefaultType text/cfml -Original Message- From: JIM [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 1:58 PM To: CF-Talk Subject: RE: apache web server doug I dont find where to set the default documents -Original Message- From: Douglas Brown

Re: apache web server

2002-02-10 Thread Michael T. Tangorre
Jim, Did you copy the ApacheModuleColdFusion.dll from the cfusion\bin folder into the Apache folder yet? Mike - Original Message - From: JIM [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 4:09 PM Subject: RE: apache web server is this right

RE: apache web server

2002-02-10 Thread JIM
yep... the only problem I have now is just pulling cfm files as the default document i can output cfm files but i have to ask for index.cfm or it outputs the html file -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 2:11 PM

RE: apache web server

2002-02-10 Thread JIM
this is what i put in the httpd.conf file # # TypesConfig describes where the mime.types file (or equivalent) is # to be found. # TypesConfig conf/mime.types # # DefaultType is the default MIME type the server will use for a document # if it cannot otherwise determine one, such as from

SQL ?: Counting number of times for this

2002-02-10 Thread Paul Sinclair
I'm preparing a simple homebrewed site statistics report for a client. I need to send a cfmail each night showing the top pages viewed in various areas of the site. I'm stumped on how to get the info I need from the db. The table involved is a simple 5 column table. I just need to do a sql

RE: SQL ?: Counting number of times for this

2002-02-10 Thread Ian Lurie
Assuming you're keeping track of page views in the table you're talking about, just do a query like this: SELECT COUNTER, TITLE FROM TABLE ORDER BY COUNTER DESC Then do a CFOUTPUT with Maxrows = the number of pages you want to show: COUNTER: TITLE COUNTER: TITLE Etc. I may be missing

RE: SQL ?: Counting number of times for this

2002-02-10 Thread Paul Sinclair
Ian, I'm sorry - I don't know what you mean. What is COUNTER and TITLE? I'm assuming you're meaning that these would be fields in the table? Are you saying I should just select a couple fields from the table and then output them? That's what I am reading from your post but I am probably mis

RE: SQL ?: Counting number of times for this

2002-02-10 Thread Ian Lurie
Ah, I get it - so the table lists each TIME one page is viewed? Is that right? If you can tell me the database type, and maybe give 2 sample rows of data, it'll be easier to figure out. We typically handle stuff like this with a storedproc. Here's a query we wrote in Access to do what you're

RE: form troubles

2002-02-10 Thread Brian Scandale
Stas, I'm not sure what you mean... for instance how would I know what was dynamically selected to include as a hidden value in the second form... the first one is where it is declared dynamically by the user. I guess I wasn't very clear. Sorry. At 10:35 AM 2/9/02 -0500, you wrote: Hi, I

Re: Cannot open database

2002-02-10 Thread David Hannum \(Ohio University\)
Owen, You most likely won't be able to put an eyeball on the corrupt data. Usually non-visible characters are the culprit. How many tables do you have in your Access database? I believe that you said you're running Access 97. If that's so, Access 97 was not real well suited for the web. It

Re: apache web server

2002-02-10 Thread Marlon Moyer
Jim, search the httpd.conf file for this section: # DirectoryIndex: Name of the file or files to use as a pre-written HTML # directory index. Separate multiple entries with spaces. # IfModule mod_dir.c DirectoryIndex index.html index.cfm /IfModule Yours will only have the index.html, so

RE: form troubles

2002-02-10 Thread Brian Scandale
Hi Kwang, Yes, that would work. However I was hoping to keep all the variables out of the url where they are more easily manipulated. At 10:21 PM 2/9/02 -0700, you wrote: One way you could solve your problem is to not submit the form if the y use the select box. Rather, do something like

RE: apache web server

2002-02-10 Thread Jim Taylor
a million kudus to you too Marion thanks Jim -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 5:04 PM To: CF-Talk Subject: Re: apache web server Jim, search the httpd.conf file for this section: # DirectoryIndex: Name of the file or files

RE: form troubles

2002-02-10 Thread stas
It is my fault, I didn't read your question properly. As I read your message again your issue looks more like a UI issue (to me). What do _you_ want to happen when the user lets go of the select menu? Do you want something to happen by default, that is, show an Add or Edit form when something is

Help with insert statment into sql 2000

2002-02-10 Thread David Brown
Help. I get this error every time I try to insert into my table. OLEDB Error Code = 109 There are more columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement. Here

RE: Help with insert statment into sql 2000

2002-02-10 Thread Andy Parry
Hi david, you need commas to separate the values in the value list, and individual quotation marks around character fields. You have a single string as a value, hence the SQL server thinks that you are only submitting a single value, yet your insert statement is saying that you are sending 14

Re: SQL Server on a separate machine

2002-02-10 Thread Kay Smoljak
Thanks for your help. I have changed the SQL Server security tab settings on the server to allow SQL Server Windows authentication. I have set the DSN up on my local machine using Windows ODBC and it verifies fine. I then look it up in the CF administrator and it fails. I have tried: - Named

OT: Java Menu?

2002-02-10 Thread Shawn Grover
I find myself in need for a decent java based menu system. The ones at www.imint.com are a bit large for our purposes (file size). I need something that emulates a Windows menu system, allows check boxes and possibly icons on the menus, and is as small as possible. I thought I'd ask here

Re: SQL Server on a separate machine

2002-02-10 Thread Marlon Moyer
I've never used trusted connections with CF, but I would assume that the account that CF is running under would have to be an account that your other server would have to recognize. You might have to run your CF server service under your name/password. Marlon - Original Message - From:

RE: Help with insert statment into sql 2000

2002-02-10 Thread Keen
I think that you need to add single quotes around the values and place a comma between them. Something like this ('B', 'BRB', '6005', '600510023 * 10023', '7 AV_WEST LAT_PSYCH OBSERVATION', )and if any of them are variables they would be like '#var1#','#var2#' HTH -Original Message-

Re: SQL Server on a separate machine

2002-02-10 Thread Daniel Quinones
you have to configure Cold fusion to run as a different user in the services panel of your admin tools. Make the cold fusion application server run as a different user, preferably a user that has access to the SQL server. Dan - Original Message - From: Kay Smoljak [EMAIL PROTECTED] To:

RE: SQL Server on a separate machine

2002-02-10 Thread Dave Watts
I have changed the SQL Server security tab settings on the server to allow SQL Server Windows authentication. I have set the DSN up on my local machine using Windows ODBC and it verifies fine. I then look it up in the CF administrator and it fails. I have tried: - Named pipes in the

RE: SQL Server on a separate machine

2002-02-10 Thread Andy Parry
Hi Kay, You have probably already done it, but (as Bryan S pointed out) did you set the username and password in the ODBC config inside the CF administrator ? (click on CF Settings button to get more detailed options) If the control Panel verifies the DSN, then setting the password in CF Admin

Re: Help with insert statment into sql 2000

2002-02-10 Thread David Brown
Insert into dbo.cdm (FAC,DPT,REV,FIM,F5,SIM,SimDescription,UP,HCPCS,PRICE,OpPrice,PRO,SUPP,Supp2 ) values ('B', 'BRB', '6005', '600510023', '*', '10023', '7 AV.WEST LAT.PSYCH OBSERVATION', '0762', '', '75000', '', 'NO', '2', '04/29/2001') is now my output and here is my error code OLEDB Error

RE: SQL Server on a separate machine

2002-02-10 Thread Kay Smoljak
Maybe it's an MDAC problem. You might download and install the latest MDAC, which is 2.7, from http://www.microsoft.com/mdac/. Or, maybe you're not specifying the other information in the CF Administrator properly, though that seems unlikely. You might try writing a page with a CFQUERY,

RE: SQL Server on a separate machine

2002-02-10 Thread Dave Watts
Maybe it's an MDAC problem. You might download and install the latest MDAC, which is 2.7, from http://www.microsoft.com/mdac/. Or, maybe you're not specifying the other information in the CF Administrator properly, though that seems unlikely. You might try writing a page with a

OT: RTF wysiwig editor

2002-02-10 Thread Jill Robin Pascua
Anyone know of a RTF wysiwig editor that I can drop into a form, a la eWebEditPro? - JR __ Do You Yahoo!? Send FREE Valentine eCards with Yahoo! Greetings! __ Why Share?

RE: form troubles

2002-02-10 Thread Brian Scandale
At 07:37 PM 2/10/02 -0500, you wrote: It is my fault, I didn't read your question properly. As I read your message again your issue looks more like a UI issue (to me). What do _you_ want to happen when the user lets go of the select menu? Do you want something to happen by default, that is, show

RE: SQL Server on a separate machine

2002-02-10 Thread Kay Smoljak
OK. At this point, I'd try the MDAC upgrade, personally. I just installed 2.7, and I'm still getting exactly the same error message. You should be able to connect with an SQL login - a username and password created within the SQL Enterprise Manager. That would be the ideal solution. If

CFLocation and relative url

2002-02-10 Thread Office
I have a form in a top frame. I want the successful logon to open a page in the main frame below without reloading the frame. This site is very large and uses loads of frames. Anyone know of a way to do it using coldfusion and not rely on JavaScript Thanks for any help Mike

RE: SQL ?: Counting number of times for this

2002-02-10 Thread Paul Sinclair
Ian, It is a pretty straightforward table in an MSSQL db. Along the lines of thi s example data (simplified for displaying here): id..script_name..remoteip...date...referer 1.../page1.cfm?id=1..200.36.36.201..2/10/2002..pagez.cfm

Re: SQL ?: Counting number of times for this

2002-02-10 Thread Jim McAtee
Taking Ian's query, and assuming you've defined a date range with a begin and end date, something like this should work: SELECT First(scipt_name) AS page, Count(script_name) AS pageviews FROM log WHERE date BETWEEN #CreateODBCDate(begindate)# AND #CreateODBCDate(enddate)# GROUP BY

Re: SQL ?: Counting number of times for this

2002-02-10 Thread Paul Sinclair
Jim, Thanks for your suggestion. I get an error using this though - First is no t a recognized SQL function or something along those lines. Any ideas what I might be doing wrong? Thanks, Paul -- Original Message -- from: Jim McAtee [EMAIL PROTECTED]

RE: Help with insert statment into sql 2000

2002-02-10 Thread Andy Parry
David Maybe there are some or ' quote marks (or comma) in your data, resultin g in this error. Are all these fields defined as text in the table ? a variable such as Pr ice is likely to be numeric and will not like being enclosed in quote marks. hth, andy -Original Message- From:

Scheduled Events

2002-02-10 Thread Duane Boudreau
I need to accomplish the following but am not sure how: I have a template scheduled to run that processes records in a db in blocks of 500. (Each record is marked as it is processed) After the template has processed its 500 records I would like the template to sleep for two minutes and then

Escaping characters

2002-02-10 Thread Jim Vosika
Earlier Ben Forta told me that to escape a character like in: cfset variables.test = ReplaceNoCase(variables.testVar, TD bgcolor=#ff width=1, new code , ALL) that I needed to change #FF to ##FF so it doesn't think it is a variable. Now I am trying to replace table width=640 How do

Re: Scheduled Events

2002-02-10 Thread Paul Giesenhagen
Without alot of thought .. but something you might investigate ... cfschedule It will create scheduled events .. Create a master application that will do a lookup on your database and find out how many records you have .. (say 10,000). Have this master application then create 20 (20x500 =

Re: Escaping characters

2002-02-10 Thread Paul Giesenhagen
Same way ... double quotes 640 Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder - Original Message - From: Jim Vosika [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 10:34 PM Subject: Escaping characters Earlier

RE: Escaping characters

2002-02-10 Thread Duane Boudreau
use two s as in table width=640 -Original Message- From: Jim Vosika [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 11:35 PM To: CF-Talk Subject: Escaping characters Earlier Ben Forta told me that to escape a character like in: cfset variables.test =

Re: Scheduled Events

2002-02-10 Thread Paul Giesenhagen
Oh ... and have your master application create a final app that will run last that deletes all the dynamically created events... (good cleanup). Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder - Original Message - From: Duane Boudreau [EMAIL

Re: Message board question

2002-02-10 Thread Tony Schreiber
You could have separate datasources, but you could also extend the heirarchy one more step. For example: message - thread - forum - group AND NOW - site. So the index of each forum needs a site id and everything falls from there. It depends on how integrated you want the forums to be. This way,

Re: CFLocation and relative url

2002-02-10 Thread Tony Schreiber
You could put base target=bottomframe in the top frames HTML. This would direct all relative links in that page to target that frame. This will also direct the ACTION attribute of the login form to that frame also which may or may not be what you want. I have a form in a top frame. I want the

RE: Escaping characters

2002-02-10 Thread Jim Vosika
I guess I dont really understand why works as well as why ## works but thanks!! use two s as in table width=640 -Original Message- From: Jim Vosika [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 11:35 PM To: CF-Talk Subject: Escaping characters Earlier Ben Forta told

Re: Help with insert statment into sql 2000

2002-02-10 Thread David Brown
Everything is varchar 255 char length. I have tried both SQL 2000 and 6.5 server - Original Message - From: Andy Parry [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 10:29 PM Subject: RE: Help with insert statment into sql 2000 David Maybe there are

Re: Scheduled Events

2002-02-10 Thread Jim McAtee
You could schedule the template to run every two minutes, beginning at a certain time and ending at a certain time. Unless you have a highly variable number of records, divide by 500 to figure out approximately how many times it needs to run. If you have 10,000 records, it needs to run 20

Re: Help with insert statment into sql 2000

2002-02-10 Thread David Brown
Also can copy the output text and past it into interdev or mysql and test it. It reports as being ok. - Original Message - From: Andy Parry [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 10:29 PM Subject: RE: Help with insert statment into sql 2000

Client Vars expiring? When?

2002-02-10 Thread Mike Kear
I thought that client variables were extinguished every time the browser was closed. Perhaps I was wrong with this. I am developing an access control app using client vars and when I close the browser and open it again, I am still logged in and can just go direct to my protected page. When I

Re: Escaping characters

2002-02-10 Thread Jim McAtee
You can escape them, or you can switch the type of quotes you use to delineate the string within a CF function. Replace(x, table width=640, table width=720, all) Replace(x, 'table width=640', 'table width=720', all) Jim - Original Message - From: Jim Vosika [EMAIL PROTECTED] To:

RE: Scheduled Events

2002-02-10 Thread Duane Boudreau
I could have 20,000 records to process or zero. I think I am going to do is try to have the task re-schedule itself if there are records left over, or delete itself if there are none. Duane -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Monday, February 11, 2002

Re: Scheduled Events

2002-02-10 Thread Jim McAtee
If you use CFSchedule to reschedule tasks that close together, you'll have make sure that the Scheduler Refresh Interval is set to 1 minute. Even then, I don't know that I'd trust it. Once a scheduled event passes without executing, you're stuck. A simpler approach would be to just schedule it

RE: Client Vars expiring? When?

2002-02-10 Thread Andrew Scott
Mike, Are you sure that you are expiring the CFID CFToken each and every time in the application.cfm template. I posted code in the CF Aussie mailing list that will do what you want it to do. -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: Monday, 11 February 2002