Re: Quick question on presentation

2008-03-14 Thread William Seiter
Can you post the code you are using to generate this display currently? This way we can help you alter it to get the results that you desire. William On Mar 14, 2008, at 9:59 AM, Don L wrote: Hi, I have a small cfwindow in my app. Currently this window displays a) bla bla... b) blaB

Re: Still can't make new posts to the CF-talk list

2008-03-14 Thread William Seiter
Or, maybe, they automatically reformat all emails sent in plain text to rich text format or HTML for better display on the feds monitors while they scour the internet spying on innocent citizens... ;-) On Mar 14, 2008, at 9:11 AM, Casey Dougall wrote: On Fri, Mar 14, 2008 at 12:41 PM,

Re: Query Access DB, then display results randomly?

2008-03-14 Thread William Seiter
just thinking out loud here. since the resultset is so low, the overhead here would be minimal. You could have a function that takes the number in the resultset and then returns a randomly generated list of those numbers. Loop through that list at presentation using the number as the

Re: Still can't make new posts to the CF-talk list

2008-03-14 Thread William Seiter
, 2008, at 9:32 AM, Tom Chiverton wrote: On Friday 14 Mar 2008, William Seiter wrote: Or, maybe, they automatically reformat all emails sent in plain text to rich text format or HTML for better display on the feds monitors while they scour the internet spying on innocent citizens... Pft, you

Re: Quick question on presentation

2008-03-14 Thread William Seiter
Not tested, but should at least get you started. style .showdiv {visibility: visible; display: block;} .hidediv {visibility: hidden; display: none;} /style table div onMouseOver=showMore() onMouseOut=showLess() cfoutput query=getStuff trtd

Re: Quick question on presentation

2008-03-14 Thread William Seiter
the intent is to display the first query result in full. When the table area is moused over, then display all of the other results. Once you mouseout of the table area, only the first result should be showing. If I have your intention incorrect, please let me know and I will try to

Re: Quick question on presentation

2008-03-14 Thread William Seiter
I can think of several different ways to accomplish what you are looking for, but each one of them would add a little bit of processing to the CF side of things, as well as the javascript code (which shouldn't slow the download at all). How slow is your page to load already? William On

Re: Quick question on presentation

2008-03-14 Thread William Seiter
=showLess() cfoutput query=getStuff trtd valign=top colspan=3b#title#/bbr/ #customHideCodeFunction(ParagraphFormat(description))#/td /tr /cfoutput /div /table On Mar 14, 2008, at 11:20 AM, William Seiter wrote

Re: Closing a Session

2008-03-12 Thread William Seiter
if you have declared the OnSessionEnd in the application.cfc, can't you specifically call that function? cfscript structClear(session); OnSessionEnd(); /cfscript william On Mar 12, 2008, at 12:18 PM, Ian Skinner wrote: That will clear the session data, but it will not close

Re: Help Adobe plan the future of Flex or ColdFusion

2008-03-11 Thread William Seiter
worked for me as well. I just placed a 1, a 2, and a 3 next to the top 3 things from the list, left the rest blank. On Mar 11, 2008, at 10:23 PM, Timmy Tom wrote: Worked for me aslo, for future features little bit confusing.. Regards, Timmy K Tom On Wed, Mar 12, 2008 at 10:35

Re: Database not found - error message

2008-03-10 Thread William Seiter
The string that needs to be replaced is probably in the application.cfm or application.cfc page. If you send us a copy of the cfquery that creates the 'rs_christmas query, we can help you find out where it is. Also, just to be sure, do you have MySql loaded on your local mac, or is it

Re: Trying to create a query with a subquery dependent on an aggregate function result

2008-03-09 Thread William Seiter
instead, you can order by ID cfoutput query='[queryname]' group='ID' Use the group part as the display the person; cfoutputUse the inner part to display the categoryname and categoryID/cfoutput /cfoutput It will return many more rows than you had originally intended, but it

RE: cfhttp, pulling from secure site

2008-03-05 Thread William Seiter
Assuming you 'have their permission' to do this... Take a look at the cf_httpx custom tag. It has a lot of features that mirror cfhttp, but added features like sessions and cookie keeping. What I have found in the past is, you may have to use a session sniffer to show you what is sent to each

RE: cfhttp, pulling from secure site

2008-03-05 Thread William Seiter
To: CF-Talk Subject: RE: cfhttp, pulling from secure site Yes, we'll have permission. :-) I'm trying to get a handle of this project in order to give a time estimate. We need to push and pull data from 3rd Party sites. Gil -Original Message- From: William Seiter [mailto:[EMAIL PROTECTED

Online tests

2008-03-05 Thread William Seiter
I have been contacted by a recruiting agency that wants me to take an online test to 'prove' my skills in CF before they will represent me. I took and passed the CF7 certification exam, however I am a horrible test taker. I was hoping there might be someone here who can give me some insight on

RE: Online tests

2008-03-05 Thread William Seiter
Thank you, About 15 or so years ago I had interviewed with Earthlink for their helpdesk jobs and they didn't want to know the 'book' way to do things, they wanted to know every which way that I knew how to do it. Thanks, William -Original Message- From: Beth Gibson [mailto:[EMAIL

RE: Online tests

2008-03-05 Thread William Seiter
a reference book handy. They want the RIGHT answer even though it may show 2 or 3 ways which would work. They want what the book says it correct (though you and I know, there's more then one way to skin a cat). On Wed, Mar 5, 2008 at 3:58 PM, William Seiter [EMAIL PROTECTED] wrote: I have been contacted

RE: Find/Replace for Eclipse

2008-03-04 Thread William Seiter
From experience (oops!): before doing the big find and replace make sure you refresh your site/folder so that all the files are current. ;) -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer /

RE: Regex Advice

2008-03-03 Thread William Seiter
What is the original string that is being reviewed by the regex? -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer / ColdFusion Programmer http://William.Seiter.com -Original Message-

RE: Add the third column into the table after the cfloop is over using cold Fusion and css

2008-02-27 Thread William Seiter
What I am picturing that you are trying to accomplish is this. Loop from 1 to half and put all results in the left column. Add the 'calendar' in the center column. Loop from half to end and put all results in the right column. Since you are doing a calculation for the 'numrows' you know how many

RE: Add the third column into the table after the cfloop is over using cold Fusion and css

2008-02-27 Thread William Seiter
Your table width is '100%' inside of your 'div' tag. I would suggest reducing that and then adding the align='center' to the div tag. William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer

Guru Disputes?

2008-02-26 Thread William Seiter
I was wondering if anyone here has had to deal with a Guru Dispute (as the 'guru')? I was wondering if anyone has any insights on how to resolve the mediation in the guru's favor (the one providing services)? William -- William E. Seiter Have you ever read a book that changed your life? Go

RE: Guru Disputes?

2008-02-26 Thread William Seiter
-Jobs-Talk Subject: Re: Guru Disputes? Guru Dispute... Is that where 2 creatures who don't like light fight to the death?... Oh.. sorry.. that's a Grue. What exactly IS a Guru Dispute? William Seiter wrote: I was wondering if anyone here has had to deal with a Guru Dispute (as the 'guru

RE: How to populate a table from a query?

2008-02-22 Thread William Seiter
cfloop query... td#data#/td cfif currentrow mod 2 is 0 or currentrow is recordcount /tr cfif currentrow neq recordcount tr /cfif /cfif /cfloop /table :.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: William Seiter [mailto:[EMAIL PROTECTED

RE: CFC protect from SQL Injection?

2008-02-22 Thread William Seiter
I 'member those days. All data requests were handled by a a href=mailto... tag. YeHaaa!!! William :) -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer / ColdFusion Programmer

RE: timeout problem

2008-02-21 Thread William Seiter
I know that I used to use the 'cfflush' tag to handle this type of issue. This does make some limitations to your code, but should work ok. I have also used the requesttimeout parameter in the url and cfsetting to some success. Hope this helps, William -- William E. Seiter Have you ever

RE: CFC protect from SQL Injection?

2008-02-21 Thread William Seiter
The best way to 'prove' it to yourself is to create a query like that and start throwing sql injection attacks at it and see if the process works as you wanted it or not. I mean, well, that *is* the way that the crackers and hackers are going to 'test' it anyways... William Which is why I

RE: How to populate a table from a query?

2008-02-21 Thread William Seiter
I blogged on it here: http://wsoncf.blogspot.com/2008/02/tips-tricks-many-times-on-informational.h tml It looks like you want #3 and just change the 'mod' to 2. William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey:

RE: The GetTimeZoneInfo() function

2008-02-20 Thread William Seiter
To get the time information from Javascript into Cf, you would need to run a javascript that will send the time information as either a url var or a form var to a page on the server that will save it as a variable. The 'next' page will have that information available to it, but the page you just

RE: Inconsistent Variable Names Across Data Sources

2008-02-19 Thread William Seiter
If you are using centralized queries (CFCs or a 'framework' type system), you can utilize the 'as' operator in SQL on your selects. This would help with future programmers coming in and not getting confused. Eg. Select givenname as first_name, sn as last_name Where Just a thought.

RE: The GetTimeZoneInfo() function

2008-02-19 Thread William Seiter
I believe you can use JS to pull the local computer's time and then use AJAX to send that information back to the server, however if this is for a security system or an application's vital information, a user can just change their local date/time to overcome the system. If you tell us what the

RE: The GetTimeZoneInfo() function

2008-02-19 Thread William Seiter
PROTECTED] Sent: Tuesday, February 19, 2008 5:47 PM To: CF-Talk Subject: Re: The GetTimeZoneInfo() function William Seiter wrote: I believe you can use JS to pull the local computer's time and then use AJAX you *cannot* get the client's tz via js

RE: The GetTimeZoneInfo() function

2008-02-19 Thread William Seiter
, 2008 7:31 PM To: CF-Talk Subject: Re: The GetTimeZoneInfo() function William Seiter wrote: Not timezone, time. the original question was about timezone, not time. ~| Adobe® ColdFusion® 8 software 8 is the most important

RE: Same inline javascript works and not working

2008-02-18 Thread William Seiter
Don, I am curious, you are referring to the id in the javascript by absolute name. Have you tried replacing all of the ' document.getElementById('noteid2')' references with 'this'? If there is an issue with the noteid2 not being unique, or any other issue with the id-ing of the element, 'this'

RE: empty array elements

2008-02-18 Thread William Seiter
What method are you using to cast your CF array over to a JS array? William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer / ColdFusion Programmer http://William.Seiter.com -Original

RE: Holy Grail? Hosting?

2008-02-18 Thread William Seiter
with them. Recently they sent out an email indicating that in 2008 they were planning on investing $250k into their architecture, so take that as you will. andy -Original Message- From: William Seiter [mailto:[EMAIL PROTECTED] Sent: Saturday, February 16, 2008 12:18 AM To: CF-Talk

RE: empty array elements

2008-02-18 Thread William Seiter
If you remove the listQualify function, does the empty array show up in the JS code when rendered? William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer / ColdFusion Programmer

RE: Same inline javascript works and not working

2008-02-18 Thread William Seiter
If firebug is not reporting an error, then the error isn't occurring. Which can mean a few different things. 1. Check what Jeff mentioned, I had assumed that the missing code was a cut/paste issue into your email tool, but if you haven't closed the cftextarea tag as well as haven't included the

RE: SOT: Holy Grail? Hosting?

2008-02-16 Thread William Seiter
the fan - type situation's- So no opinion there. Best of luck G On Feb 15, 2008 7:24 PM, William Seiter [EMAIL PROTECTED] wrote: Recently I have found a great need to find a new hosting company and have been looking for my personal 'Holy Grail' of shared hosting offers. I was wondering if anyone

RE: SOT: Holy Grail? Hosting?

2008-02-16 Thread William Seiter
, February 16, 2008 12:54 PM To: CF-Talk Subject: Re: SOT: Holy Grail? Hosting? This place? http://www.sozohosting.com/ On Feb 16, 2008 3:44 PM, William Seiter [EMAIL PROTECTED] wrote: Thank you Gerald. I called tech support to find out what tags they restrict from the admin and was told

RE: SOT: Holy Grail? Hosting?

2008-02-16 Thread William Seiter
PROTECTED] Sent: Saturday, February 16, 2008 6:02 PM To: CF-Talk Subject: Re: SOT: Holy Grail? Hosting? Now that I think about it. That was rather snarky. On 2/16/08, William Seiter [EMAIL PROTECTED] wrote: Thank you Gerald. I called tech support to find out what tags they restrict from

RE: SOT: Holy Grail? Hosting?

2008-02-16 Thread William Seiter
/16/08, William Seiter [EMAIL PROTECTED] wrote: Gerald, What was snarky? William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer / ColdFusion Programmer http://William.Seiter.com

RE: SOT: Holy Grail? Hosting?

2008-02-16 Thread William Seiter
://William.Seiter.com -Original Message- From: Chris Jordan [mailto:[EMAIL PROTECTED] Sent: Saturday, February 16, 2008 10:00 PM To: CF-Talk Subject: Re: SOT: Holy Grail? Hosting? On Feb 16, 2008 9:46 PM, William Seiter [EMAIL PROTECTED] wrote: .. Sorry to you if I offended

RE: No 64-bit on Windows for CF8?

2008-02-15 Thread William Seiter
Hey Ben, When you say 'soon-to-be-released' can the timeframe to the release be counted in months, weeks, days, hours, etc? How long would Rick need to wait (obviously an estimate, not actual time...) William -- William E. Seiter Have you ever read a book that changed your life? Go to:

RE: Neef CF 6.1

2008-02-15 Thread William Seiter
PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, February 15, 2008 3:22 PM To: CF-Talk Subject: RE: Neef CF 6.1 I'll sell you Ross' code for $20, plus for an additional $50 I will burn it to a dvd 9d mail it to you... ;-) William Seiter (mobile) Have you ever read a book that changed your life? go

RE: cfmail recommendation

2008-02-15 Thread William Seiter
::blush:: responded to the wrong email a moment ago, sorry for the confusion, if there was any... I'll sell you Russ' code for $20, plus for an additional $50 I will burn it to a dvd 9d mail it to you... ;-) -- William E. Seiter Have you ever read a book that changed your life? Go to:

SOT: Holy Grail? Hosting?

2008-02-15 Thread William Seiter
Recently I have found a great need to find a new hosting company and have been looking for my personal 'Holy Grail' of shared hosting offers. I was wondering if anyone here has had any good or bad experiences with this company so that I don't take the wrong road. My criteria for 'Holy Grail' is:

RE: SOT: Holy Grail? Hosting?

2008-02-15 Thread William Seiter
Unfortunately Will, the $130+/month for VPS is not covered by my criteria of 'inexpensive'. I actually had a long conversation with them and their shared was ideal until they confirmed that I would need create a separate hosting account for each of the websites I wanted to move over. I heard a

RE: Holy Grail? Hosting?

2008-02-15 Thread William Seiter
account. They have CF8 with little to no restrictions, and no tags/functions disabled that I've found. They also offer PHP, ASP.NET, SQL Server, MySQL, and Perl. -Original Message- From: William Seiter [mailto:[EMAIL PROTECTED] Sent: Friday, February 15, 2008 6:24 PM To: CF-Talk Subject

RE: Strange happenings in a login. CFMX 6.1

2008-02-13 Thread William Seiter
When you are testing the system and you are on the 'login' page for the second time, are you able to type the name of a login protected page into the url and view it? In other words, when you are looking at the login page are you actually already logged in, or does the system still see you as

RE: opening a new windows, a browser problem!

2008-02-13 Thread William Seiter
I agree with Andy that the CFwindow might be your best bet. As far as 'useless in Firefox', I would add that IE has the default setting to 'not' allow a website to hide the URL bar, so it 'might' be useless in IE as well. Also, if you decide to just use javascript, there is a library called

RE: Triggering Javascript within CFINPUT - DATEFIELD

2008-02-13 Thread William Seiter
What kinds of form fields are you using to select the 'from' and 'to' dates? input type='text' Javascript or CF date selector? select boxes? William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web

RE: Sample Email Based Application Needed

2008-02-13 Thread William Seiter
I would add that you should have a link in the email that goes to your secure environment so that the user doesn't feel they 'have' to use the email form and can choose the more secure system. (this will also help for people who don't have the ability to read/use 'html' typed emails.) --

RE: opening a new windows, a browser problem!

2008-02-13 Thread William Seiter
Ali, You will need to inspect the code on the /dampezeshki_final/dog/DogBreed_LargImage_1.cfm page to see how the image is being generated. I would assume something like... img src=/dampezeshki_final/dog/breedimages/#url.DogBreedID# Or img src=#DogBreed_Description.DogBreedImageFull# Once you

RE: Data display conundrum using cfquery's Group parameter

2008-02-12 Thread William Seiter
I am assuming that you have 4 departments and you want them to appear 'side by side'. table tr CFOUTPUT query=Qry_Employee group=Dept_ID td valign=top Department: #Dept_ID#br CFOUTPUT nbsp; nbsp; nbsp; ID: #Emp_ID# - #FirstName# #LastName#br /CFOUTPUT /td /CFOUTPUT /tr /table

RE: Passing method/function name to CFC

2008-02-10 Thread William Seiter
First thing that comes to mind is to remove the period (.) between [myname] and [mymethod] cfset z = application[myname][mymethod](argumentCollection = #arguments#) -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey:

RE: Drill Down Problem

2008-02-10 Thread William Seiter
I haven't tested, but maybe something like this? SELECT productType.*, productRange.*, products.*, Displayprice = CASE products.cfsalePrice WHEN products.cfsalePrice = 0 THEN products.rrPrice ELSE products.cfsalePrice END FROM (productType, productRange,

RE: Beyond Captcha

2008-02-07 Thread William Seiter
This tag seems nice for a blogging environment or a web entry system (similar to the web page where you can add comments to this list at houseoffustion.com), but what about not just the 'spammers', what about the crackers and hackers who want to gain entry to the website via a login page? William

RE: Beyond Captcha

2008-02-07 Thread William Seiter
understand the use case... On Feb 7, 2008 1:37 PM, William Seiter [EMAIL PROTECTED] wrote: This tag seems nice for a blogging environment or a web entry system (similar to the web page where you can add comments to this list at houseoffustion.com), but what about not just the 'spammers', what

RE: Beyond Captcha

2008-02-07 Thread William Seiter
that can't hear or is color blind? If you're worried about the color blind / deaf community not being able to pass a simple question, then I don't know what to say to that. On Feb 7, 2008 2:32 PM, William Seiter [EMAIL PROTECTED] wrote: Unfortunately both of those examples can be seen as biased

RE: Beyond Captcha

2008-02-07 Thread William Seiter
Unfortunately both of those examples can be seen as biased. The first one implies only one of them is true, when both are true fire and ice both can give burns. The second one implies that the reader knows enough about math to do a simple word problem. The enduring problem with a form

RE: ColdFusion: Some People Just Don't Know Any Better

2008-02-07 Thread William Seiter
Correct me if I am wrong, but hasn't CFSCRIPT been around since CF 3 (1997) CFC's are largely a new language that was totally not available in 4.5 and so are functions. I don't remember when CFSCRIPT was added, but that's pretty much a new language. -- William E. Seiter Have you ever read

RE: ColdFusion: Some People Just Don't Know Any Better

2008-02-07 Thread William Seiter
Yes, Cfscript in 4.0 released Nov 1998... still over 9 years ago -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer / ColdFusion Programmer http://William.Seiter.com -Original Message-

RE: top file extensions on the nt

2008-02-06 Thread William Seiter
At one time I had built a website for a client who didn't want 'any fancy extensions'. I ended up changing one of the config files on his server to send all .htm/.html pages to the Coldfusion processor and then made all of his site using the .html extension even though they were dynamic

RE: SPAM: Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-05 Thread William Seiter
I don't know, it looks like they are using the old .asp extension rather than .NETs .aspx extension :) Did he 'upgrade' into something older and slower? William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey:

RE: Funny questions in latest CF9 surveys*

2008-02-05 Thread William Seiter
Just my 2 cents, but I can see how the cffeed was a perceived need and created for it. XML / RSS is pretty much a stable technology. However the nature of the web services, especially some of the ones that were given as examples on the question, are always being updated. A good example would be

RE: ColdFusion: Some People Just Don't Know Any Better

2008-02-05 Thread William Seiter
I think that having it as an alternative to QBasic would be great. Budding programmers could choose which course they want. QBasic, which really isn't used anywhere, but teaches the basics, or, ColdFusion, which is used everywhere, has realworld applications, and can be used to teach the basics.

RE: ColdFusion: Some People Just Don't Know Any Better

2008-02-05 Thread William Seiter
: ColdFusion: Some People Just Don't Know Any Better -Original Message- From: William Seiter [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 05, 2008 7:04 PM To: CF-Talk Subject: RE: ColdFusion: Some People Just Don't Know Any Better I think that having it as an alternative to QBasic

RE: New FedEx Webservice

2008-02-04 Thread William Seiter
Do you have a link to the service announcement? -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer / ColdFusion Programmer http://William.Seiter.com -Original Message- From: Jeremy Keith

RE: Dead Beat Clients.

2008-02-03 Thread William Seiter
I agree that having a union would be good for working with dead beat clients as well as with obtaining good contracts, but a union should go further. To a client, a union has become the essence of 'good training'. Would we have an apprentice system? Would we develop 'union programming

RE: Dead Beat Clients.

2008-02-03 Thread William Seiter
by the tax man vs some other occupations and I think a collective representation could have the power in numbers to change things like that. On Feb 3, 2008 2:36 PM, William Seiter [EMAIL PROTECTED] wrote: I agree that having a union would be good for working with dead beat clients as well

RE: Dead Beat Clients.

2008-02-02 Thread William Seiter
If this list is going to be created, you can probably break it off into groups. 1. Dead Beats 2. Slow Pays 3. Partial Pays (Partial invoices, not partial jobs) I, personally, think this would be a grand idea. I also think that the company/client, should also be able to list on a similar

RE: Mutli-Word search and searching each word

2008-02-01 Thread William Seiter
cfloop index=URL.SEARCH list=FORM.SEARCHFORM delimiters= Products.ProductName LIKE '%#URL.SEARCH#%' OR Companies.CompanyName LIKE '%#URL.SEARCH#%' /cfloop Lets say that the there are 2 words in the search technologies and safety. This loop would produce: Products.ProductName LIKE

RE: Tricky String, Taking a string of 2 word say FNAME LNAME and returning FNAME L

2008-02-01 Thread William Seiter
Am I having a severe case of déjà vu, or did this question just get asked recently? (almost verbatim?) William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer / ColdFusion Programmer

RE: cfmenu styling

2008-01-31 Thread William Seiter
http://alistapart.com/articles/dropdowns/ -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer http://William.Seiter.com -Original Message- From: Michael Beins [mailto:[EMAIL PROTECTED]

RE: CFCOOKIE - how to handle, subdoman and domain authentication

2008-01-30 Thread William Seiter
I haven't tried this yet, but in reviewing the docs on this tag I wonder... Domain in which cookie is valid and to which cookie content can be sent from the user's system. By default, the cookie is only available to the server that set it. Use this attribute to make the cookie available to other

RE: Using cfinput causes form fields to show through?

2008-01-29 Thread William Seiter
dynamic solutionm, but hopefully it will help some. William William Seiter (mobile) Have you ever read a book that changed your life? go to: http://www.winninginthemargins.com and use passcod: GoldenGrove -Original Message- From: Ryan Stille To: CF-Talk Sent: 1/29/2008 7:25 PM Subject

RE: Front end developer to a ColdFusion developer

2008-01-29 Thread William Seiter
I think what I like the best about the opportunity is that this 'entry-level' position offers a very nice vehicle as part of the Compensation package. £3 - £35000 per annum + Bens I wish more companies would offer professional sports style perks to their offers ;) As far as posting it

RE: cfscript help using cfloop to name function with cf var - argh!

2008-01-28 Thread William Seiter
I am trying to follow what you are wanting to accomplish with this. You are setting htmlcontent to the string value 'htmlcontent' plus the current 'count' value. Then you are sending the htmlcontent1 variable (which doesn't appear to exist) to the ToScript function? I think htmlcontent1 is part

RE: date problem

2008-01-28 Thread William Seiter
Oohh, Oohh, Oooh, I know, I know Dennis Rodman... Bachelor number 2, if you were a fruit, what fruit would you be? -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer

RE: Help witha query

2008-01-28 Thread William Seiter
Your code appears that it should work correctly, so the issue should be in the query. Just my 2cents; the following is how I would simplify your code a little for the display. span class=msgtextnbsp;nbsp;nbsp;nbsp;nbsp;span class=style5Room Status/span/spanbr cfset endpoint = 10 table border=0

RE: Help witha query

2008-01-28 Thread William Seiter
of the booking. If this is true with you system, you will need to add date and time to your queries. william William Seiter (mobile) Have you ever read a book that changed your life? go to: http://www.winninginthemargins.com and use passcod: GoldenGrove -Original Message

RE: Is there a safe way to offer a Send to a Friend(email) feature without the concern of a Spam Bot?

2008-01-27 Thread William Seiter
Some of this will depend on whether or not you have a logged in area. I have added these systems in the past, but only with certain backend protections. For instance, You can limit it to 1 email address per send Offer an 'opt out' link for the recipients to add their email address to. Add a

RE: lite spell checker?

2008-01-25 Thread William Seiter
You should change the location of the 'spellchecker.cfm' file to the location of the page on your local system. As for the request var error, rerun the system after the new location has been defined above and we can work through that. William -- William E. Seiter Have you ever read a book

RE: lite spell checker?

2008-01-25 Thread William Seiter
ASpell is the spelling 'core', but you need the javascript/CF page, that calls the Aspell system. http://spellerpages.sourceforge.net/ Actually, to make things easier, this guy put out a step by step that you could follow. http://www.fantasy-league.com/coldfusion/fckeditor/ Where it refers to

RE: WOW, what a plight!!

2008-01-25 Thread William Seiter
Sheesh, I can imagine that was a blow to you. Maybe she will get the type of person she is looking for next, dishonest 'yes' person I guess we just keep 'shopping' until we find where we belong William -- William E. Seiter Have you ever read a book that changed your life? Go to:

RE: WOW, what a plight!!

2008-01-25 Thread William Seiter
there, but we may be traveling on vacation in that direction soon, ironic. William Seiter -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer http://William.Seiter.com -Original Message

WOW, what a plight!!

2008-01-25 Thread William Seiter
I was just let go yesterday. The reason was simple, but as I review the short time that I was with the company, there were tremendous factors that were involved with that eventual demise of my employment for this company. I certainly am to fault, but just as much, if not more, is the company and

Re: Personalized URLs (purls)

2008-01-24 Thread William Seiter
for a home grown approach, I did this a few years ago for a social networking site that we created. the process: 1. have all '404' errors on your site go to a cfm page. 2. The cfm page will do a 'search' on your database for a single user that has that 'phrase' in the database. If so, then

RE: lite spell checker?

2008-01-24 Thread William Seiter
the .cfm server script. I like this one the best. Hope this helps, William Seiter -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer http://William.Seiter.com -Original Message- From: Don

RE: lite spell checker?

2008-01-24 Thread William Seiter
(source forge) on your server and then updating the files to utilize the .cfm server script. I like this one the best. Hope this helps, William Seiter -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web

Re: CFQueryParam Memory Usage

2008-01-23 Thread William Seiter
If your web traffic is so high that using the cfqueryparam is driving your site speed down, I would suggest looking into changing your adhoc queries into stored procedure calls. This will put the work on the database and relieve some of the pressure from the web servers. Good luck, William

Re: How Much for a Cold Fusion Web developer.

2008-01-23 Thread William Seiter
Although I agree with you on spelling, in a digital world where our written resumes are scanned and our digital ones are 'processed' by computers, I tend to write ColdFusion with both the space and without, just so that someone looking for me who 'doesn't' know how to spell the proper name,

RE: Keep session alive for form

2008-01-19 Thread William Seiter
I like Mary Jo's suggestion and would add 1 item. This method will keep the session alive for as long as the page is open in a browser, it does not, however, verify that the user is still using the page. One thing that I have used in the past is added a 'confirm('Unless you click the \'ok\'

RE: translate js function to cfscript

2008-01-13 Thread William Seiter
The pattern is simply verifying that the numbers in the new array are valid date entries. If you just wanted to recreate this function... You can use. Matcharray = listtoarray(dateStr, /) and If arraylen(matcharray) neq 3 Thisday = matcharray[2]; thismonth = matcharray[1]; thisyear =

RE: Email Validation Question, Possible RegEx required?

2008-01-13 Thread William Seiter
How about Looping over the email listing and doing a Thisemail = mid([fullemail], find(, [fullemail]) + 1, len([fullemail] - 1) Basically you are saying that the 'true email' is between '' and ''. I am certain that there is probably a much faster regexp for this, but this is what comes to me

Spell Checker

2008-01-10 Thread William Seiter
Hey all, I am looking for a good spell-checker program for one of my sites. I was hoping someone here can point me in the right direction. I have spellcheck-cf from cfdev.com but: 1. my boss wants me to try more versions before we decide 2. it doesn't appear to have been updated recently

Re: Some help on defining amp;amp; passing a parameter in text HTML?

2008-01-10 Thread William Seiter
My understanding of your issue. You have 2 html files. the first has a link with url variables in it. The second, needs to display what those variable values were. If you are not using a server side language (coldfusion, php, asp, etc), then you will need to have this work through a client

Re: Spell Checker

2008-01-10 Thread William Seiter
Dave, That is truly funny. My workmate got a good laugh out of it as well. But seriously, anyone have any good suggestions? I looked into the opensource 'aspell' but it seems more trouble than it would be worth. (download the compiler, download the compiler to compile the compiler, download

Re: Spell Checker

2008-01-10 Thread William Seiter
There are some great suggestions here. (even the don't use words after 2003 suggestion, ;-) ) When this is eventually launched, the Googiespell limit (1000 words) will probably be used up by midday. (several active sites). I was really into it until I saw this limitation. I have found pure

<    1   2   3   4   >