Re: Setting field on form using Javascript

2001-10-29 Thread Justin Scott
jsstringformat() -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com - Original Message - From: "Angel Stewart" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, October 29, 2001 7:45 PM Subj

Re: CFmail Recount

2001-10-29 Thread Justin Scott
some serious problems on your hands. In our situation, we write the messages directly into the IIS SMTP service's pickup directory, naming the files with CreateUUID() and it works like a charm for up to about 80,000 messages a day, then IIS starts having problems keeping up. -Justin Scott

Re: CFmail Recount

2001-10-29 Thread Justin Scott
CFMAIL. 2) Outsource your mailings to a company that specializes in this type of thing, such as Postmaster General (http://www.postmastergeneral.com/). One of our clients used them to do a weekly mailing to about a million subcribers without a hitch. -Justin Scott, Lead Developer Sceiron Interne

Re: validate email addresses in text area

2001-10-25 Thread Justin Scott
num:]\-]*[[:alnum:]])?*\.)+([a-z][a-z]|[a-z][a-z][a-z]|[a-z][a-z][a-z][a-z]| [a-z][a-z][a-z][a-z][a-z])$", variables.address)) { // Eliminate it. variables.emails = listdeleteat(variables.emails, variables.counter); } // Increment our counter. variables.lcounter = variables.

Re: How do I check to see if cookies exist

2001-10-25 Thread Justin Scott
If the cookie doesn't exist, set it then reload the current page (not using CFLOCATION) with a ?checkcookies=1 on the URL. If URL.checkcookies exists, but not the cookie, redirect to a page explaining that they need cookies. -Justin Scott, Lead Developer Sceiron Internet Services, Inc.

Re: How to Handle Multiple CF Versions?

2001-10-25 Thread Justin Scott
Take the code that sends the e-mail in an external file, and use the CFIF code to determine which code to include using CFINCLUDE. CF 4.0 shouldn't puke on the CFMAILPARAM tag isn't in a file that's not included in its execution stream. -Justin Scott, Lead Developer Sceiron In

Re:

2001-10-25 Thread Justin Scott
SELECT DISTINCT field FROM table Where field contains the field where youe e-mail addresses are. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com - Original Message - From: "Dan Sullivan" <[EMAIL PROTECTED]> To: "CF-Talk"

Re: String manipulation

2001-10-21 Thread Justin Scott
There are functions available to do this for you... getdirectoryfrompath(path) - Extracts a the full directory (including \) from a full path and filename. getfilefrompath(path) - Extracts the filename from a full path and filename. -Justin Scott, Lead Developer Sceiron Internet Services, Inc

Re: Form Help

2000-11-25 Thread Justin Scott
ing info. The second sample.. ..averaged 453 milliseconds. So, it would appear that using the boolean operator really IS faster, and that whatever it is that the previous poster mentioned was correct. -Justin Scott, Staff Developer http://www.annex.com PS: Sorry about the crosspost o

Re:

2000-11-21 Thread Justin Scott
d#. At first glance that COULD be the problem, although it could just have been a typo in the example. _______ Justin Scott :: [DtDNS Administrator] http://www.dtdns.com ~~ Structure your ColdFusion code with Fusebox.

Re: Query question

2000-11-21 Thread Justin Scott
original question. _______ Justin Scott :: [DtDNS Administrator] http://www.dtdns.com ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-ar

Re: Query question

2000-11-21 Thread Justin Scott
7;re having trouble with it at all. I remember doing something very similar and it freaked out because the variable name started with an integer, so I've always placed a text identifier in front and have not had any problems since. ___ Justin Scott :: [D

Re: Kooky Form Field/List question.

2000-11-20 Thread Justin Scott
de the evaluate function. _______ Justin Scott :: [Staff Developer] http://www.annex.com - Original Message - From: "Willy Ray" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, November 20, 2000 7:48 AM Subject: Kooky Form Field/List questio

Re: How To Determine Logged In Users

2000-11-16 Thread Justin Scott
UPDATE Member_Table SET Session_ID = '#Variables.New_Session_ID#' WHERE Some_Condition = Met Using this method ensures that nobody will "spoof" the session cookie and crack into your member pages. If anyone finds a flaw in that method, please let me know (cause I use it on lots of sites

Re: need help w/ session management

2000-11-15 Thread Justin Scott
a way because it prevents multiple people from using a given account at the same time. If you have any questions about this method, or if anyone can see any obvious flaws, please let me know . _______ Justin Scott :: [Staff Developer] http://www.annex.com > I'

Re: append variable to a variable??

2000-11-15 Thread Justin Scott
I haven't done this in a while, but I believe this is the correct syntax... ___ Justin Scott :: [Staff Developer] http://www.annex.com > EdName1, EdName2, etc. > > It would be awesome if I could set a variable that could dynamically change &

Re: Netscape 6 out UGH!!!!

2000-11-14 Thread Justin Scott
that by developing under the more strict environment first, the layout testing and correction process is much easier, and less time consuming. I'm not saying it's a better browser in general, just better for developing under (in my personal experience anyway). ___

Re: Netscape 6 out UGH!!!!

2000-11-14 Thread Justin Scott
nd another day fixing it. I see Netscape as the HTML equivalent to coding with "Strict Attribute Validation" turned on . ___ Justin Scott :: [Staff Developer] http://www.annex.com

Re: auto-download of various files ?

2000-11-13 Thread Justin Scott
quot;Save Link/Target As..." option? _______ Justin Scott :: [DtDNS Administrator] http://www.dtdns.com Archives: http://www.mail-archive.com/cf-talk@houseof

Re: Mail Servers

2000-11-13 Thread Justin Scott
is is configured by IP address, the "from" address really isn't an issue in our configuration. -Justin Scott - Original Message - From: "Steve Pierce" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, November 13, 2000 1:14

Re: Security and SQL

2000-11-13 Thread Justin Scott
like.. SELECT This FROM That WHERE ID = #Int(URL.ID)# ..always a good idea. ___ Justin Scott :: [DtDNS Administrator] http://www.dtdns.com - Original Message - From: "Kevin Schmidt" <[EMAIL PROTECTED]> To: "CF-Talk" <[E

Re: Mail Servers

2000-11-13 Thread Justin Scott
u can manage all your mailboxes via ODBC if you want. _______ Justin Scott :: [Staff Developer] http://www.annex.com Archives: http://www.mail-archive.com/cf-talk@house

Re: Date Manipulation?

2000-11-13 Thread Justin Scott
Use the DateAdd function... DateAdd(datepart, number, date) so it would be... ___ Justin Scott :: [DtDNS Administrator] http://www.dtdns.com - Original Message - From: "Willy Ray" <[EMAIL PROTECTED]> To: "CF-Talk"

Re: RDS and NT holding a lock on a file

2000-11-13 Thread Justin Scott
nder the filter configuration. Unchecking this box may help with your locking problem, and also may save a milisecond (or a little less) off your page load times because ISS won't have to check for the file before it passes the request to the CF processor. _______ Ju

Re: jr CF

2000-11-13 Thread Justin Scott
x27;m still with the same company. Anyway, if you're a CF "newbie" the best thing you can do to teach yourself CF and to show others that you know your stuff is to do your own web site to demonstrate your skills. _______ Justin Scott :: [St

Re: SQL Server 2k - query from URL

2000-11-13 Thread Justin Scott
that thing? _______ Justin Scott :: [Staff Developer] http://www.annex.com - Original Message - From: "David Shadovitz" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, November 11, 2000 11:48 PM Subject: OT:

Re: CF and a Framed Based Website

2000-11-13 Thread Justin Scott
Why bother using CF for something so simple? Here's a JavaScript snippet that does it... <!-- if (self == parent) location="index.cfm"; // --> _______ Justin Scott :: [Staff Developer] http://www.annex.com - Origin

<    2   3   4   5   6   7