Need to get an easy and fast to setup template for a forum board for a website I am working on. Needs to be compat with CFMX and ODBC db source. Would like...
View the source. Do you see the <CFOUTPUT> tags in there? If so, is the template a .cfm file? If so and you're running MX, did you (or the install) run the...
The good news is that it seems that your ColdFusion install worked 'cause you got a CF error message. The bad news is that the default "test" apps didn't get...
I am trying to setup rds connection from a workstation. I need a better explanation on the settings to input. As I am getting the following error when I try...
<not sure if this went out on saturday, so i am posting again> ... Yesterday, or perhaps the day before, i responded to someone's post about exam busters...
Yeah, probably not the best example, but the mechanism is right. I usually use something like this if I have to do some more data-wrangling before running the...
Hi, I'm new to Coldfusion and have been thrown in to the deep end(or it feels like it). Can u suggest some websites with good tutorials so i can get a feel for...
cfschedule can allow you to launch at page at any scheduled time; therefore, populate the page to be scheduled with all your functionality for query. ...
Hi, I have a scheduled task setup and this is an auto-generated error I get... I'm not sure what's going on. I've tried setting up the data in a wddx packet...
I was able to determine part of my problem. I use cfflush before a cflocation and that is a known issue with ColdFusion. Does anyone know of any workarounds to...
You can use Javascript to redirect to the next page, even a form post if you wish. -John ... From: Arthur, Douglas I was able to determine part of my problem....
That didn't work out so well being that I'm needing to pass a wddx packet over. Thanks though. I was able to fit it all into another solution.... Read more if ...
Cool that you found a solution. Note that there isn't a size limit to hidden text fields. Escaping double-quotes, you could dump the whole thing in one....
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...
Nov 2, 2004 12:29 am
29442
Hello Dears, I want to use three radio boxes and when i click on the 3rd of them there must be shown a textbox and when i clicked on any other it does not...
Hi Dar, you can do this by with this simple JavaScript functions: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ...
Hi Dear, the event that call the JavaScript function is "onClick", OK? __________________________________ Do you Yahoo!? Check out the new Yahoo! Front Page. ...
Good morning, I am able to get the no entry to work on a text field if it is a <input> and not an <cfinput> such as <input name="a5_other" type="text"...
Does the noEnter function return a true if everything is okay? -John ... From: x1jeanette [mailto:x1jeanette@...] Good morning, I am able to get the no...
When you use the return functionname() method, you need to either "return true" or "return false". If you don't return true, it ignores the result. -John ... ...
I'd change these lines a little, since modern Netscape won't recognize document.layers... ... Instead, use this: var isNS = (document.layers) ? true : false; ...
... ignores ... I appreciate your help and I see where I need to use a return true but I'm not sure where to place it in my code <cfinput name="a1_staff_name"...
... I returned it at the end <cfset InputPassThrough = "onkeypress=""return noenter()""" /> <cfinput name="a1_staff_name" type="text" required="yes" message=...
You're adding it to the CFINPUT tag - not the Javascript function. Look for: Function noEnter() { ... } The "..." represents some javascript code. Before the...
It looks like you entered the function name incorrectly in the CFINPUT tag. noEnter is not the same as noenter. Javascript is case sensitive. AAA <> aaa <>...
I am using CFMX and an Access database & need some help with a reporting query I am trying to build. At this point it is not throwing any errors, but it is...