i am having an issue with gmail displaying HTML emails that are produced via coldfusion. i have tried several variations and i still cant get it to display html. a sample of code is attached.
...
Below is xml I need to parse. But I cannot work out how to reference the elements. If someone could tell me just how to reference (with a cfset) just one of the elements e.g. icon-link, I coul...
I was told by my web host company that my cold fusion shopping cart code did not include code to close the database after an inquiry. I don't know what the syntex in cold fusion would be for t...
I am trying to access the paypal webservice but I can't just use the cfinvoke tag because PayPal requires you to acces their webservice via HTTPS with an SSL certificate. I have installed the ...
I'd like to find the sum of records in all catalog_id's. Each catalog_id has 25 to 50 or so records, but my code does not give me the total for all of them, just the total for each.
How sho...
I am using a simple <CFWINDOW> setup where I ssubmit a form using the ColdFusiion.ajax.submitForm function. Everything works fine, but my cfform validation now is not working. Does something...
ColdFusion Upload PDF, Zip, etc into a MS SQL Server Blob(Varbinary(max) then how do I get it back out un corrupt?
I have some code which works for jpeg, doc, xls files. However if I uploa...
If I have a string:
I won't do it
with
I won\'t do it
So every instance of a single or double quote should have a slash before it.
Does anyone know how to export Coldfusion 7 datasources and other settings from one server to another? In Coldfuison 5 you could export the datasources from the registry. The datasources don...
I'm using the AjaxLink function to effectively reorder a table and I now need to insert a variable into the destination URL. It's a nesting issue. I've simplified the code for the sake of th...
I'm having a difficult time understanding what exactly Macromedia/Adobe Flex technology is, and what I'd need in order to build AND HOST Flex apps. Here is what I currently have installed on ...
I am trying to use cffile and I keep getting this error below. I have been searching everywhere and I see this error is common but I have not found a fix yet. Can someone please shed dome ligh...
I currently allow a user to upload an Excel spreadsheet to the server where I extract data out of the spreadsheet to be stored in an Oracle database. This works great. Now, I have a new requir...
Hi Friends
I need to build a multi level tree structure for my application (i dont want to use cfftree tag) with javascript which should be a database driven . If anyone have the code with u ...
00 <cfdirectory action="list" directory="\\teletran\stockphotography" name="StockDirectories">
01 <cfloop query="StockDirectories">
02 <cfif StockDirectories.Type is "DIR">
03 <cfoutp...
hi
we have 3 servers that I want in a coldfusion cluster. at the moment we have 2 servers and everything seems to be fine, its been running for weeks - but loads are getting higher and we n...
I'm trying to stress-test our server and set security.
I need to be able to do a 301/302 redirect from one page to another but I also want to control the User-Agent, Referer and other CGI f...
Anyone know of a way to generate a timer or ontick event in coldfusion?
For example I have a a couple of cfdivs that need to update every 10 seconds.
I used to be able to this in .NET ea...
I am using a flash form to display a grid that has fields bound to the grid. One of the fields is a datefield. It's displaying the date as "Mon Apr23 01:00:00 GMT-0500 1963". I want to disp...
Hi there..
I was wondering if someone could tell me how to send mail to multiple recipients. right now i have: <cfmail from="#FORM.E_mail#" to="Direct-orders@honey.ca" subject="Special Or...
I have a form using <CFFORM> and I have the radio buttons to be required. But if i hit submit to test the required attribute, the alert comes up, but will start with "You must fill in questio...
I would like to invoke a component and have it return TWO values, which can be used as variables on the page. I know I can do this by setting session variables. However, is there any other w...
Is there anyway when uploading a word document to convert the main body of the document to text/html for storage in a varchar or similar column in SQL server instead of those dreadful BLOB fie...
I need to understand how an application, written in Coldfusion, works so that I can convert the application/site to ASP.
I have attempted to view the .cfm files using a text editor and a ...
Is <CFScript> faster than <CFSet> and <CFIF>
Example
<CFScript>
if(1=1){
foo=true;
}
</CFScript>
vs
<cfif 1 is 1>
<cfset foo=true/>
</cfif>
Which one is better p...