| Thread | Last Post | Replies |
|
| CFinsert misbehaves | 24 Feb 2005 18:29 GMT | 2 |
Any ideas why a CFinsert tag would work on my partner's desktop and not on my laptop? Both are using CF 6.0 and MS Access database. All the files are identical. [MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access
|
| Coldfusion and xml | 24 Feb 2005 16:34 GMT | 1 |
Hi all, I'm working on a secure payment application and I ran into a problem. I do the following. I retrieve all data from a form and need to send that data through a https request to our payment provider. The provider sends back an xml string telling me if the payment was ...
|
| Setting cookie on remote machine (web service?) | 24 Feb 2005 09:33 GMT | 4 |
Is it possible to use a web service to set a cookie on the domain that the web service is executed on? I need to set a cookie for siteA from siteB, and then be able to recall the value of the siteA cookie from siteB at a later time. (both of these sites are under my control so ...
|
| Replace(#message#, '#', '##') - Why error? | 24 Feb 2005 06:40 GMT | 5 |
<!--- MESSAGE is generated by online visual html editor in this format (message - <font color="#FF0000">hello word</font>) ---> <!---I do the following ---> <cfset message = JSStringFormat(#message#)>
|
| Using CFHeader and CFContent to control file downloads | 24 Feb 2005 05:10 GMT | 4 |
I am programming a CF application for an online university. They need to be able to upload files to the server, and then authorize students individually as to which files they can download. I've got this part written. Fortunately I do have access to CFFile and CFDirectory tags ...
|
| CFCs and CLIENT Variables | 24 Feb 2005 03:23 GMT | 1 |
Okay, so our website uses CFCs for the customer's shopping cart. We instantiate a copy of a Cart CFC object and store it in SESSION.Cart. We use SESSION variables throughout the site so that as soon as the user closes their browser, they're considered logged off. But we're ...
|
| Converting cfquery to TSQL stored procedure | 24 Feb 2005 03:03 GMT | 1 |
Does anyone know how to convert this cfquery to TSQL code. The goal is to have MS SQL 2000 run this query in a stored procedure for the sake of speed, rather than have Cold Fusion process it. <cfquery name="test" datasource="abcinc">
|
| Rich flash forms and validation functions | 23 Feb 2005 19:59 GMT | 1 |
Hi. I used to use the following to validate my forms: [code] <!--- init form feilds ---> <cfparam name='form.FirstName' default=''> <cfparam name='form.Email' default=''> <!--- init error structure ---> <cfset FormError = StructNew()> <cfset FormError.FirstName = false> <cfset ...
|
| Flash Form | 23 Feb 2005 19:55 GMT | 4 |
Let's say i need the user to enter their phone number, so i make the field required with the correct error message. But in addition to making it required, i want the format of the phone to be (999) 999-9999 I tried to do this, but as soon as the form loads, it displays the field ...
|
| Function week | 23 Feb 2005 18:02 GMT | 1 |
Function week should return the week number of the year. We are today the 23rd of february. If I run : #week(now())# it returns 9 , means week 9 of the year. Is this true or false, in France , on my paper calendar, the the 23rd of february is in week 8. Thanks for any ...
|
| Adobe Graphics Server - SOAP REQUESTS | 23 Feb 2005 17:28 GMT | 1 |
Anyone out there got web services going for the AGS with CF Can only get the GetVersion() method working but cant work out the request object for Execute() Argument mismatch error! I'm guessing you either know the answer or you don't!
:) |
| Includes with querystrings | 23 Feb 2005 17:00 GMT | 2 |
I need to include 3 files that have grabbed database info using a parameter passed in their querystrings. I keep getting a 'file not found' error when I do the include with a querystring like so: <cfinclude template="Part1.cfm?dbid=100">
|
| Dynamic Checkboxes in Rich Forms | 23 Feb 2005 16:23 GMT | 3 |
Hi, I am just in the process of working with rich forms in CF MX7. I am trying to display checkboxes created from a query. The form is displayed, however, the check box labels are all being set to the first record in the database. Please could someone tell me how to get the ...
|
| How you convert this cfquery to TSQL? | 23 Feb 2005 13:25 GMT | 1 |
Does anyone know how to convert this cfquery to TSQL? <cfquery name="test" datasource="abcinc"> select * from profiles
|
| Use of onchange in cfinput for grid updating | 23 Feb 2005 06:37 GMT | 1 |
If anyone can help with this issue, I would really appreciate it. I am new to ColdFusion...Thank you in advance! The statement below works in terms of the bind=..., but when I load in the onchange attribute, the system doesn't do anything. Is the statement wrong, or
|