For some strange reason I have a website that is unable to access the CF8 Ajax scripting libraries.
The website is not set up as the default website on the server (IIS 6.0 , Windows 2003), ...
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...
Im trying to get ColdFusion to create an .xml file. I need the file extension to be .xml and want it to work like any other .cfm file. So I created an IIS Application Extension for .xml and...
Hi,
I have a script that will allow a user to upload a CSV file and it will then parse it line by line and insert each field into an MSSQL DB. This works flawlessly except when I feed it h...
Howdy,
I'm looking to catch the error that coldfusion MX 7 throws when a file is not found on the server. Please note that this is not a CFINCLUDE error. This is when a filename was perhaps...
I'm converting the commas in a list to line breaks (for display in a textarea) this way:
<cfset newlist2 = listChangeDelims(newlist,"#chr(13)#")>
Is it necessary to include chr(10) as w...
We just migrated our site from a single CF Standard server to a CF 7 Clustered and IIS 6 Load Balanced environment. Most everything is running smoothly except for some odd behavior we're seei...
OK, since Excel incorrectly formats CSV files (it does not put quotes around all fields, which is the standard), ODBC has problems with data formats. I won't bore you with the details here.
...
I am using CF MX and consuming a .Net webservice (http://book.livebookings.net/webservices-test/internal/service.asmx?wsdl). When I parse the result to retrieve datetime values they are return...
I need to run a query that will provide a recordcount for all the orders placed today. When an order is placed i insert the value of #createODBCDateTime(Now())# into my orders table. Now how...
Hi, am describing part of Return Authorization process. There are two screens that I am dealing with: on the first one I display a drop down list with contract numbers; after picking a number...
Im hoping someone can help me with an issue Im having with a JavaScript menu with dropdowns that is above a Flash header. Previously in IE, Firefox, Netscape & Opera when the user would ro...
Hello,
I am writing a web based email app that uses the flash capabilities in Coldfusion. In this particular instance I am having problems with the behavior of cfgrid. First I have a checkbox...
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 ...
ColdFusion 5 - SQL Server 2000
I have a form with an input field that sometimes gets input with an ampersand (&) ... When I pass the URL to the next page, 'Me & Bobby' becomes 'Me ' ... I k...
hi
I know creating a pdf with a rpt using cfm can be done by CFOBJECT the wrapper dll, and then use the CrystalPDF method to create
the pdf
i know we cannot even embed cfreport under cfd...
Hello Experts,
I'm trying to send an XML data which contains a .wav file decoded into Base64 format. This of course adds many pages of coded data to my XML code and I get the following err...
Hello,
How do I edit a string in cf. Let's say I have the following string:
aaa/bbb/ccc/ddd.abc
how do I find the last occuring / and delete everything before it. The end result for the...
Hi,
I'm looking for a regular expression in ColdFusion that will remove all html tags except for: links, bold, italics and underline, <A HREF...></A> <B></B><I></I><U></U>. Thanks.
Micha...
Unless I'm missing one, there doesn't seem to be one built in?
First person who can point me in the direction of a free function/custom tag/etc that can encrypt using the md5 algorith gets ...
Hi i need to use the the euro currency format, which i use: #LSEuroCurrencyFormat(subtotal,"International")#
For Example an output example of this on my .cfm page would be: USD999.00, wh...
This works in IE7 Beta but in IE6 the page won't refresh.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title...
Dear experts,
I am designing an intranet application, and I would like to use the windows authentification on my intranet.
What are my options? Can I detect either the windows user or th...
hello,
I have a simple html form as below:
<form action="page1.php" method="post">
<table>
<td> <input type="text" name="username" size="20" maxlength="40" id="user"><br>
</td>
</tab...
How can I make a substring from the last index of a char to the end of the String.
IF I have the String "Hello and_ Welcome to _America" I want to extract the _America bit into a separate v...