You have 9 fields and 10 values. Look over the query to see what matches to what. Moving this and other CF 1.5 tags to 2.0 and on is rather easy and if you ...
I remember those days... 1.5... came on 3 floppies.. what exactly is the error display? other than missing a closing ">" that is. The suggestion_no name...
Whoops, looks like you do have 10 fields. One was on the same line as another. Is it possible that your missing single quotes around a text item? ... control ...
i am drawing a blank. i have a CF page that ouputs a bunch of names from a database, along with a checkbox next to each name; then, after selecting a name (by...
... along with a checkbox next to each name; then, after selecting a name (by checking the check box and hitting 'submit') a delete query removes the name. ......
thanks sam ...actually, in my case, all i really had to do was change my WHERE clause from ' = ' to 'IN' ...worked like a charm. thanks. ... Christian...
Hi! All, I just wonder how to make logout functions in ColdFusion 5. I have the following session variables to kill, which were set up after login: <CFSET...
<cfset tmp = StructClear(Session)> That will kill ALL your session vars Gilles ... From: Shawn Lo To: coldfusion-howto@yahoogroups.com Sent: Tuesday, April 01,...
I am wondering how I might create a TOP 10 or "Most Popular" query output for my knowledge base. Granted the knowledge base uses Verity. I guessing it can be...
Any ColdFusion MX hosting service available? I have looked around the market, and can't find any CFMX hosting service. Would you please provide some...
You can start here: http://www.forta.com/cf/isp/ Search for "MX" in "Any Country" Gilles ... From: Shawn Lo To: coldfusion-howto@yahoogroups.com Sent: Tuesday,...
Hey everone, I got this link from someone who posted it from within this group sometime last month. (THANKS) This is the hosting company I'll be trading up to...
Try enterhost.com or Experthost.com. both of them provide MX hosting. MediaTemple.com is another provider of MX hosting. HTH Sean Scott Kubeworks.com ... ...
I don't need a host. I'm creating a function in my app that will display the top 10 or 5 most requested searches. Again anyone know what I'm talking about? ......
... Make sure you test all of the lists values to make sure they're numeric first, otherwise you might wind up performing this query sent in by a malicious...
Sorry about the last message replied to the wrong message header. Try enterhost.com or Experthost.com. both of them provide MX hosting. MediaTemple.com is...
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Apr 1, 2003 8:01 pm
13987
Dear Cold Fusers, I would like to do a search for either someone's first or last name or both. I would also like to do a search for their company at the same...
cfparam ...not to sound trite, but if you understand that tag, you will understand what to do. ... Christian Griffith, CTO Encore Tickets : Get Up Close ...
In a form, I have an input type text that lets the user insert a URL. How can I automaticly place the "http://" in front of the "www" if the user didn't type...
something like a cfif findnocase() should work...if not found. prepend it,("http://" & variablename) if found, leave it alone.....that should work........ ... ...
<cfif Left(Form.URL,4) neq "http"> <cfset Form.URL="http://#Form.URL#"> </cfif> I check for http instead of http:// because of secure URLs (https://). ... ...
Try Revorg, I have a few sites hosted with them. $99 for the year, running MX too. http://www.revorg.net ... From: Shawn Lo [mailto:shawn0706@...] Sent:...
I have been working on this page for 3 weeks and could not get it to work properly. The last cell of one of the rows doesn't get coded. You can see the result...
Hi Michael, I wish I could migrate to <CFQUERY> ie version 2 or more. This is a legacy application and migration is stalled due various strange factors...
The query can be debugged by taking the SQL statement out of the DBQUERY and output it to the page. Take that output and try it against the DB directly. If it...
This is what I'm trying to do. We have an employee area that is password protected. Once inside employees can navigate to various pages within the site. What...
An idea or two. Once someone is logged in, set a session/client/cookie variable. In the application.cfm, check for the existence of this and if it doesn't...