RE: What's not secure?

2007-08-30 Thread William Seiter
You also might consider the Flash 'codebase' is pulling from a non-secure site. William -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 29, 2007 9:44 PM To: CF-Talk Subject: Re: What's not secure? I got the same thing on Firefox (mismatched

RE: lt;cfwindowgt; making page jump to top..

2007-09-11 Thread William Seiter
When you have the onclick as well as an 'href', you are calling 2 separate actions at the same time. In which order they are executed will be determined by your browser. Try this one: a href =javascript:ColdFusion.Window.show('window#Section#');return false;Show students that didn't complete an

RE: Very basic question about cfmail

2007-09-13 Thread William Seiter
http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_m-o_01.html#2355015 Add this parameter/value type=HTML in the cfmail tag Hope this helps William -Original Message- From: NUGROHO NOTO [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 2:01 AM To: CF-Talk Subject: Very

RE: Scope Question

2007-09-19 Thread William Seiter
Maybe.. cfset x = listfirst(cgi.query_string, ,) cfset y = listlast(cgi.query_string, ,) Hope this helps, William -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 19, 2007 9:00 AM To: CF-Talk Subject: Scope Question I'm using this very

RE: CF8: Why would I be getting an access error with this query?

2007-09-20 Thread William Seiter
Using the same datasource, username and password, are you able to run any other queries against this database? You should check to make sure: 1. datasource, username and password are all spelled correctly and case-sensitive (I don't know if your database is case-sensitive, but it doesn't hurt to

RE: Cfcalendar - 410 error

2007-09-21 Thread William Seiter
on the events on that date. Any help would be appreciated. William -- William Seiter [EMAIL PROTECTED] Web Developer Database Developer FileMaker7 amp; FileMaker8 Certified Discover How a Bankrupt School Teacher From Toronto Accidentally Stumbled Up on an Amazing Secret

RE: #$^% Forms!

2007-09-25 Thread William Seiter
I have a client that is having me fix his signup page for a similar reason. He believes he is missing out on 'a lot' of business because of the form validation problem. Unfortunately, his code is written in asp, so I'll be slumming it for a few hours this week ;) William -Original

RE: Fusion Authority Quarterly Update

2007-09-25 Thread William Seiter
I just received my first copy of the quarterly last week, and I was VERY much impressed with the quality of binding and paper used. Certainly blows away most everything else I have seen... William Seiter -Original Message- From: Dale Fraser [mailto:[EMAIL PROTECTED] Sent: Monday

RE: Conferences

2007-09-26 Thread William Seiter
WOW!! There is some 'seriously' dated information on that page... William -- William E. Seiter Web Developer http://William.Seiter.com -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 25, 2007 9:42 PM To: CF-Talk Subject: Re: Conferences

RE: php date to coldfusion date help

2007-09-30 Thread William Seiter
It looks like the double quotes is producing your problem. They work fine when mimicking the original double quotes, however, the date string did not originally have double quotes around it. Try one of the versions below. (the second one simplifies the dynamic date to 2 calls instead of 6).

RE: Site wide error handlers

2007-09-30 Thread William Seiter
Michael, There is an 'order of presedence' with error control. CFTRY/CFCATCH - priority over all CFERROR is 2nd priority Site wide Custom Template is the 3rd priority (this is set in the Administrator pages) System error Handling (also in the Administrator pages, involving the debug) Basically,

RE: Site wide error handlers

2007-09-30 Thread William Seiter
that order and you did. I have not used cferror, but have used cftry extensively. I just want to make sure that nothing breaks if I slide in cferror on the application.cfm on a working app. Again, I appreciate the response, William. -Original Message- From: William Seiter [mailto

RE: Next lowest number from array (or list).

2007-10-03 Thread William Seiter
Depending on deployment and expected usage, I would suggest adding an 'if' statement around the loop to Dale's code in order to check if the arguments.value is greater than 32. This will reduce the 'if' statement inside the loop to only 1 value check, allowing for a cfbreak to be added as an

RE: Multi language page

2007-10-05 Thread William Seiter
Sounds like the same response they had for us. Out of curiousity, what site are you looking to translate? -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove -Original Message- From: NUGROHO NOTO

RE: Multi language page

2007-10-05 Thread William Seiter
I have worked on a fairly large website where we were faced with a similar problem. The 'ultimate' solution is to upgrade to a newer version of CF and then store all of your text as Unicode, but if you can't do that, then you can do what we did, just realize it is not easily upgraded once you

RE: Multi language page

2007-10-05 Thread William Seiter
We had much more than just English and Japanese on our servers. We also had Chinese, Korean, Tagalog, etc. When a 'bad' piece of data is stored, the browser will try to make assumptions about what to display based on the page encoding. The 'microsoft' quotes were detected as Japanese characters

RE: Multi language page

2007-10-05 Thread William Seiter
In another email, I mentioned the other languages, which further detailed our 'grief'. Ultimately, the management decided to not pursue the changes due to our estimate of cost/time involved. But that is the method we were instructed to try by Macromedia. William -- William E. Seiter Have

RE: Case Sensitivity

2007-10-05 Thread William Seiter
It used to be that the computer industry (CIS and CS) were as a science program rather than the current zeitgeist of a business program. In science, as someone else studiously pointed out, whether a word was spelled with uppercase letters, lowercase letters, or capitalized words, would determine

RE: Passing a variable from a Span ID to CF

2007-10-05 Thread William Seiter
Cold fusion is pretty much a one-way relationship on the server-side. Coldfusion can help create javascript, but once on the browser, only javascript is available to the resulting code. Javascript CAN call a coldfusion page on the server and return its results, but that isn't exactly the same

RE: CF Code readability (Where Clause)

2007-10-06 Thread William Seiter
I prefer the second line for easy 'adjusting' as well. If I end up adding a conditional, it is easier to have them all on 1 line to begin with. William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove

RE: CF Coding Standards

2007-10-07 Thread William Seiter
You are the lead, you see a problem with not only the current code but future code put together. You are introducing standards to the group. This is not at all a bad thing. You will probably be heralded in the future for your attempts now, however despised you might be for it now. I would

RE: Exporting from ColdFuion to a Excel file

2007-10-11 Thread William Seiter
Steve, Like skinning a cat, there are several ways to have a web document end up in Excel. Can you describe your scenario? What are you trying to accomplish? William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey:

RE: Exporting from ColdFuion to a Excel file

2007-10-12 Thread William Seiter
-Original Message- From: William Seiter [mailto:[EMAIL PROTECTED] Sent: Thursday, October 11, 2007 10:29 PM To: CF-Talk Subject: RE: Exporting from ColdFuion to a Excel file Steve, Like skinning a cat, there are several ways to have a web document end up in Excel. Can you describe your scenario

RE: Check File For Change

2007-10-13 Thread William Seiter
Would you be able to compare the date/time of the upload to the date/time of the 'last update' for the file? This could shed some light on whether the file had been opened/re-saved since the upload. (however it would not show if it had been opened and 'not changed', only re-saved. William --

RE: Frameworks: Post vs. Get

2007-10-14 Thread William Seiter
I haven't worked with very many frameworks, but my understanding is that they don't change the basic functionality of Coldfusion as a middle-tier. You should be able to call upon the 'post' structure for the value of those variables to verify that it was declared there. William -- William E.

RE: Is This Possible??

2007-10-15 Thread William Seiter
In your table structure, I see you have declared the primary key for each table, but I am unclear as to any foreign keys. Since the rest of the columns are varchars. Can I assume that tbl_personnel.emp_id is a 'unique' id that represents each unique row? Can I assume the same for

RE: Creating replicated sites with coldfusion

2007-10-15 Thread William Seiter
Use a custom 404 page. You will need to update the 404 error handling in your server (Apache, IIS, etc) to point to this new page on all 404 errors. This page will parse the cgi.request_uri string into an array based on the / character. Do a check in the database for the user which matches the

RE: SYS-Con relies on quot;deadquot; technology

2007-10-16 Thread William Seiter
Wow!! They fixed the error messaging, but NOT the page throwing the error? Whatever happened to 'If your code is going to fail, make sure it 'fails gracefully'' ?? LOL William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter

RE: What can PHP do that CF can't?

2007-10-19 Thread William Seiter
BASIC? ( I guess today it is called QBASIC) Lasso? -- 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: Claude Schneegans [mailto:[EMAIL

RE: Authentication working - would like to amend

2007-10-19 Thread William Seiter
In the Application.cfm page, prior to the redirect to the login page, but after validating that the session.allowedin var is 'false'. Set a session.var to the cgi.REMOTE_URI. (The user is on the page that they wanted, but the login is about to send them to the login, so you store their intent

RE: Best Database Engine for ColdFusion (Survey)

2007-10-19 Thread William Seiter
What kind of a system are you going to create? Also, why 'not oracle'? Is it price or something about it you want to avoid? -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove Web Developer

RE: What can PHP do that CF can't?

2007-10-19 Thread William Seiter
Casey, Smack? I am not certain where you got the idea that I was writing 'smack'... Do you disagree with me that ColdFusion offers an opportunity for people fresh into the web to get a lot out of their websites, very quickly? I guess that could slow down your database but it's the SQL

RE: error with long form post

2007-10-25 Thread William Seiter
Greg, Can you post the actual error message that you are receiving? Also, what are you doing with the post? Are you placing it into a database? Is that database column setup for text fields of this size? William -- William E. Seiter Have you ever read a book that changed your life? Go to:

RE: Using ColdFusion to determine if user has Flash player?

2007-10-25 Thread William Seiter
Andy, Because you are talking about 2 different sides of the 'firewall' Client and Server. You will be restricted to what the browser sent as it's 'identifier' message. I have not looked to see if the user can customize their browser to identify which flash version that they have when they

RE: greying out part of a form

2007-11-09 Thread William Seiter
If you use this method (which I think is the best visually), be careful on your 'action' page. Different browsers treat the 'visibility:hidden' form elements in a different manner. In some browsers, that 'hidden' section is sent with the form. In other browsers, that section is considered 'not

RE: changing a css file via coldfusion

2007-11-09 Thread William Seiter
In coldfusion, you would just put a cfif statement around the different LINK href=mystyle.css rel=stylesheet type=text/css choices. This would involve a new call to the server for each 'change' of style sheet. To do it while on the page (and without a call to the server), you could try: LINK

http to secure login

2007-12-17 Thread William Seiter
I am having a problem with a cfhttp (or cfx_http5) problem. I started using the cfhttp tag and have migrated to the cfx_http5 tag to use its session management. I am trying to log into a website that has a cache of pictures that were sent to me. I get these images daily, so I want to automate

Scraping Websites, Touchy Subject??? Please tell me where to go.

2007-12-18 Thread William Seiter
Hi all, I am beginning to realize that talking on a public forum can be a 'touchy' subject when it comes to scraping content from websites. First off, I want to assure you that I am not doing anything illegal. I am within my 'terms'. I am hoping that someone here can direct me to where to go

Re: Sending Emails / Spam Filters

2007-12-19 Thread William Seiter
Please post a sample of the code that you are using to send the emails. there are a number of different headers that can be added to reduce your spam-risk assessment, and it would be helpful to see what you are sending already. William Hi All I've just built a customer management / login

RE: In Theory - Returning to a Search Results Page Question

2007-12-21 Thread William Seiter
Store the search params in your 'session' scope? If the 'search' is generated from an 'action' return (del,arch,edit), then use the session scope, otherwise, use the 'form' scope for the search. Hope this helps, William -- William E. Seiter Have you ever read a book that changed your life? Go

RE: how to remove ?

2007-12-21 Thread William Seiter
Michael, You were given a few options to choose from. Can you tell us: a. which option you are referring to b. what do you mean by 'true character' William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter passkey: goldengrove

RE: Upload and Manipulate file

2007-12-29 Thread William Seiter
Couple of things. 1. You should not be able to get the directory structure of the user's computer (where the file was uploaded from). This has been 'available' through the IE browser in the past, but it breaks the 'sandbox' concept, where the browser should never give out information about the

RE: Custom Tags Ignoring CSS

2007-12-30 Thread William Seiter
The solution will be determined by the output of the custom tag. CSS is browser-based and therefore coldfusion should have no effect on it. Check for output that has a defined background color in the generated output from the custom tag. William -- William E. Seiter Have you ever read a

RE: using form.fieldNames and CFLOOP to insert selected radio but tons

2008-01-06 Thread William Seiter
Ron, Dave has given you two concrete solutions/options/direction to handle this issue. I have read many of his helpful responses to people on this board and I am sure he is an 'expert' here. 1. Use a 'cfif' statement within your 'cfloop' to process the form variable as long as it is 'not'

RE: using form.fieldNames and CFLOOP to insert selected radio buttons

2008-01-06 Thread William Seiter
results that I was questioning whether or not I was using the best method or if there was a better one. -Original Message- From: William Seiter [mailto:[EMAIL PROTECTED] Sent: Sunday, January 06, 2008 2:45 AM To: CF-Talk Subject: RE: using form.fieldNames and CFLOOP to insert selected radio

RE: using form.fieldNames and CFLOOP to insert selected radio buttons

2008-01-06 Thread William Seiter
-Original Message- From: William Seiter [mailto:[EMAIL PROTECTED] Sent: Sunday, January 06, 2008 10:54 AM To: CF-Talk Subject: RE: using form.fieldNames and CFLOOP to insert selected radio buttons Ron, Since you know what the name of the submit button is on the receiving page, you can check

Re: secure cross-domain login

2008-01-09 Thread William Seiter
Just a thought, but you could have the sending site create a unique url string variable (encrypted of course) when the user clicks on the link that goes to your page: 1. The code would look for the encrypted url string in lieu of the login credentials. 2. If it exists, then your

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

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

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

  1   2   3   4   >