473,671 Members | 2,113 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ColdFusion Forum

Coldfusion (Adobe) application server and scripting language - Ask questions about ColdFusion scripting, IDE, databases, SQl, components, CFCs, syntax, server setup, Coldfusion 6 / 7 / 8 and more.
1
3,457
thread by: grabit | last post Mar 13 '07 by: acoder
Hi Peoples i have a search page with a form field "subject" on my results page i have a paging routine . the first page lists its 10 records no trouble but when i click the "next" link i get a error telling me "subject is not defined in form" How can i overcome this please. I will post the page down to the end of the paging routine coz its not...
1
6,564
thread by: mrboyer79 | last post Feb 27 '07 by: mrboyer79
hey all, i have the following bit of code: <cfif DayOfWeek(Now()) EQ 6 AND Hour(Now()) GE 19 > <cfset pendimg = 4> <cfelseif DayOfWeek(Now()) NEQ 6 AND Hour(Now()) GE 17 AND Hour(Now()) LE 19> <cfset pendimg = 3> <cfelse> <cfset pendimg = 2> </cfif>
5
6,499
thread by: subhodey | last post Feb 26 '07 by: acoder
Hello, I have a ColdFusion online application that has a page having 2 textboxes. Corresponding to these 2 textboxes I have a Custom tag in coldfusion where the textbox is defined by <input type=text .....>. In the onChange event a coldfusion attribute is called (like, onChange="#attributes.onChange#"). Now in the cold fusion page the 2...
1
1,963
thread by: mrboyer79 | last post Feb 23 '07 by: acoder
hey all, i have the following bit of code: <cfset plstcct = ",@PLST_CT = '0'"> which just sets plstcct to ,@PLST_CT = '0'. it's just a string, nothing too fancy, but that's the format it must be in. the issue i'm coming across is that the = in the middle is being read as the start of a new variable, making '0' that new variable. is there...
1
4,161
thread by: ajaxnewbie | last post Feb 23 '07 by: acoder
Can someone help me convert the PHP lines below from PHP to Coldfusion? <?php $ftmp = $_FILES; $oname = $_FILES; $fname = 'upload/'.$_FILES; if(move_uploaded_file($ftmp, $fname)){ ?> <html><head><script> var par = window.parent.document;
1
2,938
thread by: someguy | last post Feb 21 '07 by: acoder
I am developing a shopping cart and I have the following question. People can add products to their shopping cart whether they are logged in or not, however their items go to what I call a user_cart or a session_cart respectively. My question: when the user logs in, all the items from the session_cart are entered into the user_cart. the...
2
2,618
thread by: stnick | last post Feb 20 '07 by: someguy
As a fellow web application developer, I hated the testing phase of the project. Typing in the data, having a bug or it crash, fixing (hopefully) the problem, then typing in all the data again to re-test, only to have it crash at some other line of code, fixing that one, etc. You get the picture. I've decided to streamline that process and...
3
2,395
thread by: rengaraj | last post Feb 19 '07 by: acoder
Hi I'm currently running CF 4.5 on a NT4.0 box. I need to migrate to a box running Windows 2003 Server. Can anybody help answer the following questions? 1- Does CF4.5 support Windows 2003? If not, what is the lowest version of CF that supports 2003 and is still being support by Adobe? 2- Does Adobe support cold fusion Upgrades or Migrations...
1
6,192
thread by: mystickle | last post Feb 19 '07 by: rengaraj
Hi there! I'm new to ColdFusion so I hope my question makes sense... I have created a blog using ColdFusion, but for some reason when the blog is submitted the blog text within the <textarea> field is not always submitting. The form: <cfform name="myblog" method="post" action="blogaction.cfm" enctype="multipart/form-data"> User...
1
7,265
thread by: anastasios | last post Feb 19 '07 by: rengaraj
Hi every, I want read and edit the Field "password" in the Table sysusers in SQL Server 2000 DB with ColdFusion MX7. It is possible? Thanks in advance for any help Regards, Anastasios
3
3,665
thread by: KenP | last post Feb 15 '07 by: acoder
I have a cf mx 7 web application that I need to add the ability for the user to select from approximately 400 options. Using a generated list with select boxes on the main form is out of the question because the list is so long. Is there a way to open another cfml file in a different window with a auto generated cfquery result to create this list...
1
3,236
thread by: vigneshb4u | last post Feb 13 '07 by: acoder
Hi all I am new to ColdFusion and I want to implement MVC pattern using Struts in ColdFusion MX. I am aware of other MVC frameworks like Fusebox, Model-Glue, Mach II etc., but I prefer using Struts. I would like to know if we can implement the model and controller using CFC in Struts, instead of using beans and servlets. I would...
3
4,116
thread by: hasano | last post Feb 11 '07 by: acoder
I have this if statement in a form <cfif #URL.Type# IS "Edit"> <input type="button" value="Edit message" onClick="validate()" name="Edit"> <cfelseif #URL.Type# IS "Delete"> <input type="submit" value="Delete message" name="Delete"> </cfif> where validate() is a javascript function that submits the form. <script type="text/javascript">
1
3,238
thread by: hasano | last post Feb 8 '07 by: acoder
hi all, can anyone help me in understanding the following code: <CFLOOP LIST="ThreadUserEmail,ThreadUserName" INDEX="CurrItem"> <CFIF IsDefined("Cookie.#CurrItem#")> <CFSET "#CurrItem#" = evaluate("Cookie." & CurrItem)> <CFELSE> <CFSET "#CurrItem#" = ""> </CFIF> </CFLOOP>
2
2,558
thread by: hussain123 | last post Jan 23 '07 by: hussain123
Hi All, I am working on a web page which is built in ColdFusion. The problem is it's performance.The page takes lot of time for appearing on the screen.I have fine-tuned my code to follow the best practices of CF but somehow could not find any improvement in the performance.I have found-out that the query does not take much time but while...
1
2,583
subashini Thiyagarajan
thread by: subashini Thiyagarajan | last post Jan 18 '07 by: acoder
What is Coldfusion? can any experts in that explain me in simple words about that? where this s/w is used? why we need to use this? what benefit we get? which s/w were fulfilling this place before the introdution of this s/w? Please explain me
2
9,175
thread by: windsorben | last post Jan 16 '07 by: windsorben
I'm submitting a form to the same page. Form variables are being output into the URL and the query works from the URL variables. Problem is, I have submit the form twice before the form field I have selected are passed to the URL variables. In between, it goes back to the default form and url variables that I set to zero. Any idea what going...
1
2,677
thread by: chrisdonkor | last post Jan 13 '07 by: acoder
I have a news website in which I want to display about three lines of each entry whiles the rest of the story is read on a detail page. Can somebody help me out with the code to do that? Below is my output query: <CFOUTPUT query="Comments" maxrows=10> <a href="cad_cn_detail.cfm?tblNewsCatID=#tblNewsCatID&tblNewsID=#tblNewsID#"...
1
2,392
thread by: pegassi | last post Jan 5 '07 by: acoder
Which one u prefer for deplying bussiness applications, ASP or CF? And which one is usable for bussiness applications? Thanks...
3
5,941
thread by: srinivas182 | last post Dec 28 '06 by: acoder
hi all, i am a begginer of coldfusion.plz suggest good book in coldfusion. Thanks in advance
1
6,334
thread by: jamesonworld | last post Dec 26 '06 by: acoder
Hi, I am new in coldfusion. I would be glad if you guys can help. I want my page to load and inside the search button i want the word "SEARCH" to happen. But when the user clicked to search for items the word "SEARCH" should be cleared from the text box so the user can search more like and event I need that for click when the mouse is been click...
2
3,391
thread by: meka07 | last post Dec 26 '06 by: acoder
Hey to everyone who visits this site, My name is Tomeka and Im a graduating senior at Mississippi Valley State, we are working on a project to mske an online trascript evaluation and the part I have was easy at first but now its confusion, I have two drop down menus the first is YEAR(2004,2005,2006); the second is MAJOR(comp sci, info sci.,...
1
5,135
thread by: asnyder131 | last post Dec 11 '06 by: bishwadeep
I'm a newby here as well as to mysql and coldfusion. I'm a business owner who had previously designed my own relational database system for my company (smartware) and used it sucessfully for many years. I have recently paid for a new web based system and decided to go with a programmer that built a coldfusion mx/mysql system. There are a...
1
4,020
thread by: videostar | last post Nov 30 '06 by: 1harsh789
Greetings, first post, but have read many times for various CF questions. My goal is, using CF and MS-SQL 2k, the following: and - I need to have either CF or MS-SQL upon a record insert, generate a sequential 3 digit number, that is incremented by 1. However, this number needs to check the date, as if it is the first of the...
2
9,068
thread by: ismailc | last post Nov 6 '06 by: sbbabaran
Hi, I need help! I have a coldfusion report with a form split into two. one being an output data table where you can search on output data and the other just a normal text box. what i'm struggling with is onclick of selected td code/data in bottom table to add the selected code to the top text box. Please any ideas!

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.