With the following script I intend to verify that a username "starts with a letter, contains letters, numbers and underscore only, and has a length of between...
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Oct 2, 2005 1:38 am
35115
The CreateTimeSpan should only be passed in positive values. Negative values may cause an error in future releases. The CachedWithin only takes affect if the...
Can someone help me How to get some values using CFHTTP? tnx. THIS IS THE URL. <cfhttp url="http://www.lme.com/dataprices_daily_metal.asp> <CFOUTPUT> ...
you need to search on google for screen scraping. Basically, the idea is that you have to use regular expressions to scrape the data that you want from...
When you define a Regexp as a string, you need to escape backslashes: var usernameReg = "^[a-zA-Z]\\w{3,9}$"; -- _______________________________________ REUSE...
[Walter Conti] Thank You Claude When you define a Regexp as a string, you need to escape backslashes: var usernameReg = "^[a-zA-Z]\\w{3,9}$"; [Non-text...
I do this kind of thing all the time from gathering balance sheet statistics to miles from this or that location. You can use the full API of any java class in...
Hi group, I'm just starting to learn CF and this is my first post, although I've been receiving the listings for some time. Anyway, I'd like to create a...
Check out the CFTREE tag, it may provide you with what you need. -John ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On...
Have you though about a DHTML menu generated on the fly from data in a SQL db? JoAnn Schlosser Web Consultant ASI Consulting Advanced Solutions International,...
I have an interface between us and SalesForce that works great on mx6. We are currently testing our code on mx7 and the SalesForce interface fails. I am...
Try Sothink's DHTML Menu. It's very easy to use and can be generated on the fly with CF. http://www.sothink.com/product/dhtmlmenu/index.htm ColdFusion tutorial...
I would like to upgrade my MX6.1 server to an MX 7 multi-server. The current server is not currently setup for multi and I am wondering if this is even...
Has anyone successfully pulled up a report using CR XI/ CE XI? The old view source trick no longer works and I'm able to talk directly to the object, just...
Any version of ColdFusion supports multiple servers. For MX, you can locate the different connectors in the CFusionMX\bin directory for configuring a web...
Thank you but I want to UPGRADE from a CFMX6.1 non-multi server to a CFMX7.0 Multiserver and not have to do all my Cold Fusion setting by uninstalling and...
Is it possible to "force feed" data into a query after the query has run? For instance: <cfquery name="q1" datasource="dsn"> select column1, column2 from...
Look at QueryAddRow and QuerySetCell. -John ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of Ali, Hakim Is it...
Anyone know what the equivalent Request, Response, and Session Objects in ASP are for ColdFusion? I tried using this: #GetPageContext().getRequest()#, etc. But...
Thanks a ton John, that worked. Hakim ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of Bartlett, John Sent:...
I'm trying to run a sql update statement but seem to have a syntax problem. I am passing an ID with a url to this code: <cfquery datasource="connection"...
"done" is a text string and should be wrapped with single quotes. UPDATE Table1 SET Var1= 1, Var2= 'done' WHERE ResourceID =#url.ResourceID#; ... From:...
Try remove the ";" from the query Gilles ... From: trevormorrislyman To: coldfusion-howto@yahoogroups.com Sent: Tuesday, October 04, 2005 5:13 PM Subject:...
Thanks.. but that wasn't it. It's still not working. I'm getting an http 500 Internal Server error if that helps. ... syntax ... ASP.NET, Access, MySQL, PHP,...
Randy, first, a menu is a menu. CF and its dynamic part is the next step. A menu can be written in HTML/CSS/Javascript, either coded manually, or using desktop...