Re: Regex issue

2008-04-24 Thread Web Exp
, Gerald Guido <[EMAIL PROTECTED]> wrote: > You can do that with the out of the box CFform > .. >required="No"> > > > > > On Thu, Apr 24, 2008 at 8:33 AM, Web Exp <[EMAIL PROTECTED]> wrote: > > > Hi... Can someone give me the regex pat

Regex issue

2008-04-24 Thread Web Exp
Hi... Can someone give me the regex pattern for checking if the user input is: Either a percentage value (between 1 and 100) OR it is a integer between 1 and 1400. Please help. ~| Adobe® ColdFusion® 8 software 8 is the most impor

Re: Reporting system too heavy

2008-02-23 Thread Web Exp
I am using MS SQL Server 2005. On Sat, Feb 23, 2008 at 10:08 PM, Craigsell <[EMAIL PROTECTED]> wrote: > What database are you running? > > Things like this are much better left to the database than the web server. > For example, on Oracle I'd write a stored procedure to calculate and return >

Reporting system too heavy

2008-02-23 Thread Web Exp
Hi... I have reporting system that is causing big problems. This is a e-commerce website that runs heavy database transactions every day. We have a web-based (coldfusion) system that displays daily/monthly/yearly sales reports. It runs heavy queries on a single page that do hundreds of complex quer

cf8 code in cf7

2007-12-30 Thread Web Exp
Hi... I need help making this CF8 code work in CF7. Can anyone help me with this? Here's the code: ]*[^/])>", htmldoc)> Thanks, K ~~

Re: regular expressions

2007-12-28 Thread Web Exp
Dan... i also need to do the same thing in CF 7... do you know a quick way to do that too? On Dec 29, 2007 1:11 AM, Web Exp <[EMAIL PROTECTED]> wrote: > yes. i am sure about that. I have CF8. I think i found out what the > problem is. Some of the img tags have no double quotes in

Re: regular expressions

2007-12-28 Thread Web Exp
> > > On Dec 29, 2007 12:53 AM, Web Exp <[EMAIL PROTECTED]> wrote: > > Yes. I am reading a html file. I changed the first regular expression > > like this: > > > > > variable="htmldoc"> > > > >]*[^/])>", htm

Re: regular expressions

2007-12-28 Thread Web Exp
Yes. I am reading a html file. I changed the first regular expression like this: ]*[^/])>", htmldoc)> This gives me a cfdump of all img tags. but the next few lines are doing something that results in an empty array at the end. But now I am getting a CF error: The element at position

Re: regular expressions

2007-12-28 Thread Web Exp
Dan, I just did a cfdump for variable "images" in your code. Even that shows up an empty array... are you sure the regular expression is correct in this line? ]*/>", htmldoc)> On Dec 28, 2007 11:32 PM, Dan Vega <[EMAIL PROTECTED]> wrote: > I know some regex people are going to jump all over this b

Re: regular expressions

2007-12-28 Thread Web Exp
Thanks Dan... i tried your code... all i getting in the cfdump is an empty array. Any ideas? On Dec 28, 2007 11:32 PM, Dan Vega <[EMAIL PROTECTED]> wrote: > I know some regex people are going to jump all over this but I really don't > know regex.. Try this on 8 with a html page in the same direct

Re: regular expressions

2007-12-28 Thread Web Exp
thanks guys any other ideas, code samples etc? On Dec 28, 2007 6:13 PM, Claude Schneegans <[EMAIL PROTECTED]> wrote: > >>yeah, didn't see that coming > > LOL... always ready to help people > > -- > ___ > REUSE CODE! Use custom tags; > See http://www.con

regular expressions

2007-12-28 Thread Web Exp
Hi.. i have some html files which i need to be able to read and find all referenced files in it. Like all jpg, gif, css, js files etc that are being used inside the html tags. I don't need the paths, just the filenames. I know i need to to use regular expressions to do so can someone give me an

Webservice over SSL

2007-11-07 Thread Web Exp
Hey guys... i am getting an error message when trying to invoke a webservice's wsdl over SSL. The error is: File not found: /CFIDE/componentutils/cfcexplorer.cfc Now, if I access the url through my browser it comes up fine, although I do get a browser warning about the SSL certificate not issued

Re: Regex search problem

2007-11-05 Thread Web Exp
Id67Text more text more text testId49Text more text testId54Text more text > > > > > > > On Nov 5, 2007 9:30 AM, Web Exp <[EMAIL PROTECTED]> wrote: > > Hi. I have a bunch of text in a db table that has multiple occurances > > of this pattern: > > "testI

Regex search problem

2007-11-05 Thread Web Exp
Hi. I have a bunch of text in a db table that has multiple occurances of this pattern: "testId67Text more text more text testId49Text more text testId54Text more text" How can I get all the numbers from it? i need 67,49,54. I know it need regex. But I need help. Thanks, K ~~

number of times

2007-11-02 Thread Web Exp
Hi. I have a large chunk of text/html-text in the database and I need to find out the number of times the term "fantabulous" occurs in it. Any CF function/UDFs that I can use? Any ideas please? Thanks, k ~| Create robust enterpr

Re: CF Mappings

2007-10-24 Thread Web Exp
on > Gainey IT > Adobe Certified Advanced Coldfusion Developer > > -Original Message- > From: Web Exp [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 24, 2007 12:53 PM > To: CF-Talk > Subject: CF Mappings > > Hi > I have two separate applications runnin

CF Mappings

2007-10-24 Thread Web Exp
Hi I have two separate applications running on the CF server CF MX 7.0.2 Standard. Currently both are using same set of custom tags/cfc frameworks. But I want them to use two separate copies of the CFC/custom tags. So that if I am working on one application's cfcs, it doesn't affect the other. H

Re: XML Parse

2007-10-09 Thread Web Exp
Sure. Here's the error: An error occured while Parsing an XML document. Reference is not allowed in prolog. On 10/9/07, Brad Wood <[EMAIL PROTECTED]> wrote: > Can you supply us with the error you are receiving? > > -Original Message- > From: Web Exp [mailto:[

Re: XML Parse

2007-10-09 Thread Web Exp
Well... I don't want to convert this string to a CF struct. I know I can do that using cfwddx. In this case I simply want to convert the string into an XML object. The string again is:
0

Delete records on browser close

2004-12-08 Thread Web Exp
Hi. I am looking for a way by which i can delete the records entered by a user, if he closes the browser. Ideas please... - Ken ~| Special thanks to the CF Community Suite Silver Sponsor - New Atlanta http://www.newatlanta.com M

Re: Delete records on browser close

2004-12-08 Thread Web Exp
Thanks Isaac. However, if I use frames, where would i put the javascript to trigger the OnBeforeUnload handler? Also where would i put the actual OnBeforeUnload handler... would it go into one of the frames. Please tell me more, or give some sample code. Thanks, Ken On Wed, 8 Dec 2004 11:11:11

Re: Elementary session question

2004-12-07 Thread Web Exp
as disappeared, > so when they come back their cache will get cleared. > > Alternatively you could clear the whole session struct to kill the whole > session using StructClear(SESSION). > > Hth > > > Kam > -Original Message- > From: Web Exp [mailto:[EMAIL PROTECTED

Re: Elementary session question

2004-12-07 Thread Web Exp
d recreate the cookie. > > There might be better ways but that's my offhand take. > > Kam > > > > -Original Message- > From: Web Exp [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 07, 2004 10:04 AM > To: CF-Talk > Subject: Elementary sess

Elementary session question

2004-12-07 Thread Web Exp
Hi. I am new to session management in CF. My application inserts certain records into the database. After inserting each record, the user gets to see all the records that he added in this particular session. If the user closes browser, and adds more records, he should not see the ones that he added

test post

2004-08-24 Thread Web Exp
test post [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]