| Tue Jan 17, 2006 9:29 pm |
| Replies: 5 |
| Views: 15507 |
|
 |
Since you are in the folder with the component neon.cfc, its looking in the current directory before it looks at the maping. To get this to work you can do either of the two:
call the component li ...
|
| Mon Jul 11, 2005 1:43 pm |
| Replies: 3 |
| Views: 11022 |
|
 |
I wanted to be sure to only update form fieldnames that have the word display in them, since it was looping through the form.fieldnames list.
Since you are looping through different list you shouldn' ...
|
| Fri Jul 08, 2005 8:27 pm |
| Replies: 3 |
| Views: 11022 |
|
 |
You can try somthing like this:
<cfloop list="#form.fieldnames#" index="tmp_form">
<cfif FindNoCase('Display',Evaluate("form.#tmp_form#"))& ...
|
| Tue May 31, 2005 2:39 pm |
| Replies: 4 |
| Views: 14459 |
|
 |
You can use the function Left(string, count), this will return the leftmost count characters in a string.
You can find more information on this function at:
http://livedocs.macromedia.com/coldfu ...
|
| Thu May 05, 2005 2:30 pm |
| Replies: 4 |
| Views: 15821 |
|
 |
Use the #query_name.columnList# variable to get a Comma-delimited list of the query columns.
-Steve
|
| Tue Mar 22, 2005 8:24 pm |
| Replies: 6 |
| Views: 16232 |
|
 |
Try the following:
<CFIF isdefined("form.SICCd") and len(form.SICCd) >
<cfformgroup type="horizontal">
<cfformitem type="Text" name=& ...
|
| Thu Mar 17, 2005 9:14 pm |
| Replies: 4 |
| Views: 13599 |
|
 |
You can try to take the output, #pageContent# and write it to a temporary coldfusion page like this:
<cffile action="write" file="tmp_file.cfm" output="#pageContent#& ...
|
| Fri Mar 04, 2005 10:37 pm |
| Replies: 6 |
| Views: 17072 |
|
 |
Forrest,
The option becomes available when you select either an Ultra Developer or Power Developer plan from the Choose a plan drop down menu
(javascript must be enabled).
-Steve
|
| Fri Mar 04, 2005 10:23 pm |
| Replies: 6 |
| Views: 17072 |
|
 |
Forrest,
J2EE session variables will not be enabled on our Coldfusion 7 servers at this time, also as Alan mentioned we can move your current site to a CF 6.1 server. When ordering future accoun ...
|
| Thu Feb 10, 2005 11:15 pm |
| Replies: 4 |
| Views: 12874 |
|
 |
You will have to add single quotes arround each color since they are string values.
You will have to loop through your list and add single quotes around each list element.
Then in your query us ...
|
| Mon Nov 29, 2004 4:53 pm |
| Replies: 2 |
| Views: 9993 |
|
 |
Change this:
#cardID# owned by #qGetMatches.userID#<br>
to:
#cardID# owned by #ValueList(qGetMatches.userID)#<br>
This will list all the values for that column. You we ...
|
| Mon Nov 29, 2004 4:44 pm |
| Replies: 2 |
| Views: 10120 |
|
 |
This is because ColdFusion ignores empty list elements.
I would suggest using the Replace function to replace any occurance of '||' with something like '|~|', then run the loop and if you find a '~ ...
|
| Fri Oct 08, 2004 6:37 pm |
| Replies: 7 |
| Views: 18075 |
|
 |
We don't offer those specific tools you inquired about with your plan.
However if you are using FrontPage you can easily implement a counter.
If you are not sure how to set this up contact us a ...
|
| Fri Oct 08, 2004 6:20 pm |
| Replies: 9 |
| Views: 22804 |
|
 |
In this case the Form variable is a structure so you can use the StructFind function to get the value of the form field.
It might look something like this:
<!--- this will display the form ...
|
| Thu Oct 07, 2004 7:38 pm |
| Replies: 9 |
| Views: 24160 |
|
 |
Jamie,
Your checkbox fields are named the same so if they are both checked form.color will be '1,1'
If you give the form fields separate names you will be able to distinguish one from the other ...
|
| Page 1 of 2 |
All times are GMT |
|