RE: help with string manipulation (Find,Replace)

2004-05-17 Thread Pascal Peters
stTmp = REFind("[*]{3}[[:space:]]+([^*]+)[[:space:]]+[*]{3}",str,1,true); info = Mid(str,stTmp.pos[2],stTmp.len(2); #info# > -Original Message- > From: cf coder [mailto:[EMAIL PROTECTED] > Sent: vrijdag 14 mei 2004 17:07 > To: CF-Talk > Subject: Re: help with string manipulation (Find,

CFmail and Spam

2004-05-17 Thread Adam Reynolds
Hi, Hotmail keeps marking emails sent by the server as junk mail. These mails are sent out to players in a game to tell them to take their turn. Is there anything that can be done to make it look like the mail came from say Outlook? Adam [Todays Threads] [This Message] [Subscription] [Fast

Re: help with string manipulation (Find,Replace)

2004-05-17 Thread cf coder
Hey Pascal, hope you're doing well buddy! I'm getting an error. The selected method len was not found. Either there are no methods with the specified method name and argument types, or the method len is overloaded with arguments types that ColdFusion can't decipher reliably. If this is a Java obje

Re: How to secure email with CFMAIL

2004-05-17 Thread Rick Root
Brant Winter wrote: > Hi - Maybe I should be addressing this question to the CF-Newbies list, but > I will try here anyway! > > I need to create a form to submit patient data to another health company be > email. I was thinking I could easily write the app in CF to do this, but I > want to secure

RE: cfmx admin question

2004-05-17 Thread Whittingham, P
yes (cfstart) , but i think it produce some errors...how does one interprete them. Pat -Original Message- From: Jim Louis [mailto:[EMAIL PROTECTED] Sent: Saturday, May 15, 2004 7:56 PM To: CF-Talk Subject: Re: cfmx admin question DO you have a web server running on your system? JIm Lo

Re: help with string manipulation (Find,Replace)

2004-05-17 Thread cf coder
I figured that out.. thanks stTmp = REFind("[*]{3}[[:space:]]+([^*]+)[[:space:]]+[*]{3}",str,1,true); info = Mid(str,stTmp.pos[2],stTmp.len[2]); #info# the above code works however I was wondering if you could do me another favour. At the minute you are searching for the "***". Would it be

RE: Need to have a javascript that selectively validates

2004-05-17 Thread Whittingham, P
Jim, i presume session1 is a field name within your form and you want the validation at on submit eventremember _javascript_ is a case-sensitive language unlike CF. The _javascript_ Bible, by Dan Goodman is an excellent book Pat