Re: Script Protect Question

2014-05-13 Thread Dave Watts
Script protect is blocking the form variables and I'm recording blanks for these transactions. I don't really want to turn off script protect globally, but I do want to shut of the forms protect on selected pages. How can I list the pages and/or form variables I want to allow as an

RE: Script Protect Question

2014-05-13 Thread Robert Harrison
[mailto:dwa...@figleaf.com] Sent: Tuesday, May 13, 2014 10:30 AM To: cf-talk Subject: Re: Script Protect Question Script protect is blocking the form variables and I'm recording blanks for these transactions. I don't really want to turn off script protect globally, but I do want to shut

Re: Script Protect Question

2014-05-13 Thread Russ Michaels
-Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, May 13, 2014 10:30 AM To: cf-talk Subject: Re: Script Protect Question Script protect is blocking the form variables and I'm recording blanks for these transactions. I don't really want to turn off script

Re: Script Protect Question

2014-05-13 Thread Dave Watts
or you could consider taking a look at Fusegaurd instead which will give you far more granular control. There are also various web application firewall modules available for IIS and Apache which you could use for more generic security that is not CF specific. Yeah, honestly, I'd also

RE: Script Protect Question

2014-05-13 Thread Robert Harrison
- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, May 13, 2014 11:39 AM To: cf-talk Subject: Re: Script Protect Question or you could consider taking a look at Fusegaurd instead which will give you far more granular control. There are also various web application firewall modules

Re: Script Protect Question

2014-05-13 Thread Dave Watts
Do you know of any code samples for the first solution where you may be able to send a link? I read the documentation and agree this seems to be the way to do, but I'd sure like to see some sample code on that. I don't have one handy - I don't use it - but will try to put something

Re: Script Protect Question

2014-05-13 Thread Russ Michaels
- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Tuesday, May 13, 2014 11:39 AM To: cf-talk Subject: Re: Script Protect Question or you could consider taking a look at Fusegaurd instead which will give you far more granular control. There are also various web application firewall

Re: Script not firing?? dojo messing things up?

2013-06-11 Thread Dave Watts
cfif qryCaseID.recordcount EQ 12 cfoutput3 script4 window.open=('#cgi.HTTP_HOST##myself#caseDetails.editCaseInfocaseId=#qryCaseID.caseId#','_self'); /script5 /cfoutput6 cfelse7 == I've tried

Re: Script not firing?? dojo messing things up?

2013-06-11 Thread Phillip Vector
Tried it. Didn't work still. The numbers were just for tracking. After some additional test, I found dojo screwing things up. Thanks anyway. :) On Jun 11, 2013 11:39 AM, Dave Watts dwa...@figleaf.com wrote: cfif qryCaseID.recordcount EQ 12 cfoutput3 script4

RE: Script not firing?? dojo messing things up?

2013-06-11 Thread Robert Harrison
[mailto:vec...@mostdeadlygame.com] Sent: Tuesday, June 11, 2013 2:49 PM To: cf-talk Subject: Re: Script not firing?? dojo messing things up? Tried it. Didn't work still. The numbers were just for tracking. After some additional test, I found dojo screwing things up. Thanks anyway. :) On Jun 11

Re: Script not firing?? dojo messing things up?

2013-06-11 Thread Dave Watts
Tried it. Didn't work still. The numbers were just for tracking. I realize the numbers were for tracking, but you can't just drop a literal value in a SCRIPT block - that's all I'm trying to say here. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig

Re: Script Issue

2012-12-20 Thread Brian McCairn
I might have missed it scanning through but have you got a form field called resultblock? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Script Issue

2012-12-20 Thread Raymond Camden
The error is on this line, var resultblock = document.getElementById(resultblock); So ensure you have a div or span with that ID. On Thu, Dec 20, 2012 at 9:06 AM, Bruce Sorge sor...@gmail.com wrote: I needed a way to check a database when someone enters a code into a form field, and I

Re: Script Issue

2012-12-20 Thread Bruce Sorge
Yeah, I forgot that. Thanks. Now the issue is that when I enter a code in the database, I don't get any message at all. This is driving me nuts. And again, I know that the calling CFM file works and I also know that the script is calling the checkorgname.cfm file because if I change the name

Re: Script Issue

2012-12-20 Thread Brian Thornton
I love how raymond answers this question... On Dec 20, 2012 10:14 AM, Raymond Camden raymondcam...@gmail.com wrote: The error is on this line, var resultblock = document.getElementById(resultblock); So ensure you have a div or span with that ID. On Thu, Dec 20, 2012 at 9:06 AM, Bruce

Re: Script Issue

2012-12-20 Thread Raymond Camden
? Did I make a funny and not know it? ;) On Thu, Dec 20, 2012 at 9:20 AM, Brian Thornton br...@cfdeveloper.comwrote: I love how raymond answers this question... On Dec 20, 2012 10:14 AM, Raymond Camden raymondcam...@gmail.com wrote: The error is on this line, var resultblock =

Re: Script Issue

2012-12-20 Thread Raymond Camden
Have you looked at your web console to examine the XHR hit and see the response? On Thu, Dec 20, 2012 at 9:20 AM, Bruce Sorge sor...@gmail.com wrote: Yeah, I forgot that. Thanks. Now the issue is that when I enter a code in the database, I don't get any message at all. This is driving me

Re: Script Issue

2012-12-20 Thread Bruce Sorge
I didn't see anything that stands out. What's interesting is that if I change this line from this: if(result == 0) status('You have entered an invalid code. Please try again!'); else status(''); to this: if(result == 0) status('You have entered an invalid code. Please try

Re: Script Issue

2012-12-20 Thread Raymond Camden
So what is result? If you use the XHR portion of your JS console you can see it, or just plain alert() it. On Thu, Dec 20, 2012 at 10:32 AM, Bruce Sorge sor...@gmail.com wrote: I didn't see anything that stands out. What's interesting is that if I change this line from this: if(result ==

Re: Script Issue

2012-12-20 Thread Bruce Sorge
No matter what I put in, I get a 1 as the result var. On Dec 20, 2012, at 12:00 PM, Raymond Camden raymondcam...@gmail.com wrote: So what is result? If you use the XHR portion of your JS console you can see it, or just plain alert() it.

Re: Script Issue

2012-12-20 Thread Raymond Camden
Then you need to debug in your CFM. On Thu, Dec 20, 2012 at 11:10 AM, Bruce Sorge sor...@gmail.com wrote: No matter what I put in, I get a 1 as the result var. On Dec 20, 2012, at 12:00 PM, Raymond Camden raymondcam...@gmail.com wrote: So what is result? If you use the XHR portion of

Re: Script Issue

2012-12-20 Thread Bruce Sorge
What is really pissing me off about this issue is that even if I copy your example verbatim and it does not work. I even went to the source of your example and copied and pasted and it did not work on my test machine. I might just roll it out to the production site since it's not done yet and

Re: Script tags and fckEditor

2011-03-22 Thread Torrent Girl
also check if you have scriptprotect=all/form/url enabled in your application/cf admin - if you do and you store the content you enter into fckeditor in a db, all script tags will be replaced with [invalid tag]... On 22/01/2011 00:29 , Monique Boea wrote: Is there ANY way to allow script

Re: Script tags and fckEditor

2011-03-22 Thread Dean Lawrence
The whole point of the scriptprotect attribute is to try and prevent scripts from being submitted to your site. When you use fckEditor, your submission is ultimately, just another form field. So if you have added scripts in the editor, the scriptprotect attribute will strip them out. So the only

Re: Script tags and fckEditor

2011-01-21 Thread Gerald Guido
Did you try adding them in FCK's HTML view? That should work. I donno about editing them after that. But you should be able to add them. HTH G! On Fri, Jan 21, 2011 at 11:29 AM, Monique Boea moniqueb...@gmail.comwrote: Is there ANY way to allow script tags in the fckEditor? When I add

Re: Script tags and fckEditor

2011-01-21 Thread Azadi Saryev
also check if you have scriptprotect=all/form/url enabled in your application/cf admin - if you do and you store the content you enter into fckeditor in a db, all script tags will be replaced with [invalid tag]... On 22/01/2011 00:29 , Monique Boea wrote: Is there ANY way to allow script

RE: Script to move email to from undelivr to spool?

2008-11-10 Thread Andy Matthews
://undelivrnator.riaforge.org/ andy -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2008 5:14 PM To: cf-talk Subject: RE: Script to move email to from undelivr to spool? Really? No cfexecute solutions? tsk tsk cfexecute name=C:\windows\system32\cmd.exe

RE: Script to move email to from undelivr to spool?

2008-11-10 Thread Andy Matthews
BTW...I meant we as in Dealerskins. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, November 10, 2008 8:25 AM To: cf-talk Subject: RE: Script to move email to from undelivr to spool? Bobby (and anyone else)... Undelivrnator gets a list of all files

RE: Script to move email to from undelivr to spool?

2008-11-07 Thread Bobby Hartsfield
. :-) ..:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: sachin chawla [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2008 8:02 AM To: cf-talk Subject: Re: Script to move email to from undelivr to spool? Hi Nick try this cfparam name

RE: Script to move email to from undelivr to spool?

2008-11-07 Thread Nick Gleason
Thanks bobby! Nick ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

Re: Script to move email to from undelivr to spool?

2008-11-05 Thread sachin chawla
I simply use this: cfdirectory directory=undelivr action=list name=undelivr cfoutput query=undelivrcffile action=move destination=spool\#undelivr.name# source=undelivr\#undelivr.name# /cfoutput replace undelivr and spool with your actual undelivr and spool directories. Run as often

Re: Script to move email to from undelivr to spool?

2008-11-05 Thread sachin chawla
Hi Nick try this cfparam name=directorypath default=C:\CFusionMX7\Mail\Undelivr\ cfdirectory directory=#directorypath# name=myDirectory action=list cfoutput#myDirectory.RecordCount#/cfoutput cfif #myDirectory.RecordCount# gt 0 cfoutput query=mydirectory cfif #type# EQ

RE: Script to move email to from undelivr to spool?

2008-11-04 Thread Andy Matthews
My project, the Undelivrnator, can be used for this: http://undelivrnator.riaforge.org/ Simply set up a scheduled task, a table in the db to use as a monitor, and you're good to go. andy -Original Message- From: Nick Gleason [mailto:[EMAIL PROTECTED] Sent: Monday, November 03, 2008

Re: Script to move email to from undelivr to spool?

2008-11-04 Thread Chris Kelly
I simply use this: cfdirectory directory=undelivr action=list name=undelivr cfoutput query=undelivrcffile action=move destination=spool\#undelivr.name# source=undelivr\#undelivr.name# /cfoutput replace undelivr and spool with your actual undelivr and spool directories. Run as often as you

Re: Script to move email to from undelivr to spool?

2008-11-04 Thread Chris Kelly
I simply use this: cfdirectory directory=undelivr action=list name=undelivr cfoutput query=undelivrcffile action=move destination=spool\#undelivr.name# source=undelivr\#undelivr.name# /cfoutput replace undelivr and spool with your actual undelivr and spool directories. Run as often as you

RE: Script to move email to from undelivr to spool?

2008-11-04 Thread Nick Gleason
Paydirt! Thanks for all the feedback! -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 9:31 AM To: cf-talk Subject: RE: Script to move email to from undelivr to spool? My project, the Undelivrnator, can be used for this: http

RE: Script to move email to from undelivr to spool?

2008-11-04 Thread Andy Matthews
If you decide to use this project, let me know. It'd be nice to hear if anyone likes it, and finds it useful. -Original Message- From: Nick Gleason [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 1:30 PM To: cf-talk Subject: RE: Script to move email to from undelivr to spool

Re: Script to move email to from undelivr to spool?

2008-11-03 Thread Shannon Peevey
What platform are you on, and what is the criteria needed to move the messages? Speeves On 11/3/08, Nick Gleason [EMAIL PROTECTED] wrote: Hi folks, We need to develop a script that can move mail from the undelivr folder to the spool folder in CF. My recollection is that there was some talk

Re: Script to move email to from undelivr to spool?

2008-11-03 Thread AJ Mercer
This might give you some ideas http://www.coldfusionjedi.com/index.cfm/2006/1/16/Yet-another-project--announcing-SpoolMail you can manage your undelivered emails from within CFIDE On Mon, Nov 3, 2008 at 10:27 PM, Nick Gleason [EMAIL PROTECTED]wrote: Hi folks, We need to develop a script

RE: Script to move email to from undelivr to spool?

2008-11-03 Thread Nick Gleason
:11 PM To: cf-talk Subject: Re: Script to move email to from undelivr to spool? What platform are you on, and what is the criteria needed to move the messages? Speeves On 11/3/08, Nick Gleason [EMAIL PROTECTED] wrote: Hi folks, We need to develop a script that can move mail from

Re: Script to move email to from undelivr to spool?

2008-11-03 Thread Dave Watts
Hey there. We're on IIS. But I was imagining that this would be a CF file run by scheduled task once a day or so. However, I'm open to other approaches as well. Why not just write a batch file and schedule that using the Windows scheduler? That would likely be far more efficient. Dave

RE: Script on one site

2008-09-03 Thread Scott Raley -ITC
Yes we just had this happen and it was a sql attack. -Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2008 12:01 AM To: CF-Talk Subject: RE: Script on one site Any ideas? Probably a SQL injection attack. See the previous discussion

Re: Script on one site

2008-09-03 Thread Al Musella, DPM
Look at the .cfm file and see if these script tags are in the cfm file or if they are stored in a database. Look through your database. Look at every table and see if there is a lot of junk at the end of some char or varchar fields.. At 10:37 PM 9/2/2008, you wrote: I have one site in

RE: Script on one site

2008-09-03 Thread webmaster
, 2008 10:38 AM To: CF-Talk Subject: Re: Script on one site Look at the .cfm file and see if these script tags are in the cfm file or if they are stored in a database. Look through your database. Look at every table and see if there is a lot of junk at the end of some char or varchar fields.. At 10

Re: Script on one site

2008-09-02 Thread Azadi Saryev
you have become a victim of sql injection. there are huge threads on this forum devoted to the recent spate of sqli attacks, with great suggestions re fixing this. the most important thing: make sure all your queries use cfqueryparam! Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/

RE: Script on one site

2008-09-02 Thread Justin D. Scott
Any ideas? Probably a SQL injection attack. See the previous discussion on this topic: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:57241 -Justin Scott ~| Adobe® ColdFusion® 8 software 8 is the most

Re: Script on one site

2008-09-02 Thread Brad Wood
@houseoffusion.com Sent: Tuesday, September 02, 2008 11:00 PM Subject: RE: Script on one site Any ideas? Probably a SQL injection attack. See the previous discussion on this topic: ~| Adobe® ColdFusion® 8 software 8 is the most

RE: Script timing?

2005-04-26 Thread Figy, Kam
I tend to use the gettickcount() method some others have suggested. Something that did fool me for a while though, is that such results can be made completely wrong by having debugging enabled. The particular culprit is report execution times, which will cause UDF, custom tag, and CFC calls to

Re: Script timing?

2005-04-25 Thread Bryan Stevenson
include the loop via CFINCLUDE and then check how long that file took in the debugging ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web:

Re: Script timing?

2005-04-25 Thread Charlie Griefer
cfset startTime = getTickCount() / your code block cfset endTime = getTickCount() / cfset total = endTime - startTime / cfoutput your code ran in #total# ms /cfoutput * disclaimer - i -think- it's measured in ms... :) ** disclaimer part deux - in MX, you can just do cfoutputyour code ran in

RE: Script timing?

2005-04-25 Thread RADEMAKERS Tanguy
Hello Damien, I use the following custom tag to time code blocks: -start- !--- timer custom tags to calculate the elapsed time --- cfswitch expression=#thistag.executionmode# cfcase value=start cfparam name=request.timingArray

Re: Script timing?

2005-04-25 Thread Joe Rinehart
If you're using CFMX7, the CFTrace tag can help out with this. Pre-7, you can get the same kind of results by using the GetTickCount() function, such as: cfset lastTick = GetTickCount() / !--- do something big and ugly --- cfoutputThat took: #GetTickCount() - lasttick#ms/cfoutput -Joe On

RE: Script timing?

2005-04-25 Thread Dawson, Michael
You could also use cftimer. M!ke -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 1:54 PM To: CF-Talk Subject: Re: Script timing? cfset startTime = getTickCount() / your code block cfset endTime = getTickCount() / cfset total = endTime

Re: Script CodeSweeper

2004-09-18 Thread dave
if anyone wants to try this thing u can dl it here http://www.jamwerx.com/open/ph370.zip -- Original Message -- From: dave [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Fri, 17 Sep 2004 18:09:41 -0400 theres a program out there called pretty html 3.7

Re: Script CodeSweeper

2004-09-17 Thread Jochem van Dieten
Dan O'Keefe wrote: Is there anyway to execute codesweeper from CF, or does anyone know of a command line tool that would allow you to clean an HTML file on disk from CFML (or Java)? HTML Tidy Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Script CodeSweeper

2004-09-17 Thread Dan O'Keefe
Thanks. You are referring to the Java Version, JTidy, correct? Dan - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] Date: Fri, 17 Sep 2004 21:46:51 +0200 Subject: Re: Script CodeSweeper To: CF-Talk [EMAIL PROTECTED] Dan O'Keefe wrote: Is there anyway to execute

Re: Script CodeSweeper

2004-09-17 Thread Jochem van Dieten
Dan O'Keefe wrote: Thanks. You are referring to the Java Version, JTidy, correct? Not to any version in particular. The Java version might be easy to integrate as a class, but I get the impression it is not under active development. The C version needs to be called as a separate executable,

Re: Script CodeSweeper

2004-09-17 Thread dave
theres a program out there called pretty html 3.7 which works wonders, maybe dead now though. sure wish someone would pick it up and redo it cause its really good!!! if anyone wants it i will upload it but i cant give u my code maybe i will try and contact the guy to see if hes still doing it.

Re: script app

2004-09-09 Thread Claude Schneegans
No one is answering any of my questions so I have to assume that I am making them too long Or too hard? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL

RE: script app

2004-09-09 Thread Ewok
Seems to me that people spent a lot of time answering your question that started out as ~escaping “ character~, namely Pascal Then Pascal again told you how to use a UDF Then, guess what, Pascal again when he fixed your array looping problem. I think your questions (plural) are being answered

Re: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-06 Thread Howard Fore
If you can do everything you need in cfscript, it's much more readable IMHO. However the functionality gap between cfscript and cf tags negates this to some degreee. In my experience switching back and forth between tags and cfscript has yielded some very awkward code. I've almost completely

RE: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-06 Thread C. Hatton Humphrey
If you can do everything you need in cfscript, it's much more readable IMHO. However the functionality gap between cfscript and cf tags negates this to some degreee. In my experience switching back and forth between tags and cfscript has yielded some very awkward code. I've almost completely

Re: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-06 Thread Pete Ruckelshaus - CFList
I agree completely on the readability issue.In my application.cfm file, I try to use cfscript blocks as much as possible, mainly to keep code both compact and readable.I do the same thing on pages where I need to set more than one or two variables.cfscript blocks are also easier to find when

RE: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-06 Thread Dave Watts
Just a note on this: the bug is basically that you never see value of 1-9 - only 0, 10 or more than 10. (and I think it's actually an OS problem on Windows, not a CF issue - can any Linux/Unix user confirm the bug on their platform?) According to the MM guy who explained this problem to

RE: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-06 Thread Andre Turrettini
agreed. I'm praying that a major improvment in the next cf will be that all (or as many as possible) tags and functions are available within cfscript. -Original Message- From: Howard Fore [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 6:14 AM To: CF-Talk Subject: Re: Script vs

Re: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-05 Thread Michael Dinowitz
That's very strange. While I did find some big differences in CFSCRIPT vs. CFTAGS in earlier versions of CF, I have not seen such in CFMX. I'm going to rerun my tests in the latest version to see how they run and also look at the class files. A perfect example of a change is that CFIF vs. IIF() in

RE: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-05 Thread Dave Watts
It's been my experience that using CFSCRIPT never provided any significant performance increase in any case. I disagree. My tests: the function queryRandomize() from DRK 4 (or was it 5?), I rewrote it, line-by-line (including comments!) and called it queryRandomizeCFML().

RE: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-05 Thread Jim Davis
Third, you're pointing out an approximate difference of three milliseconds per request, which is practically immeasurable by CF (if I recall correctly, CF can't accurately handle time increments smaller than 10 milliseconds). I would question whether that's a significant performance increase,

RE: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-05 Thread Philip Arnold
From: Michael Dinowitz That's very strange. While I did find some big differences in CFSCRIPT vs. CFTAGS in earlier versions of CF, I have not seen such in CFMX. I'm going to rerun my tests in the latest version to see how they run and also look at the class files. A perfect example of

RE: Script to release lock on an Access database

2003-02-10 Thread Neil.Robertson-Ravo
It may not work on cases where you db is always being pinged. If you do not get to it in time then it will create another lock. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] Sent: 07 February 2003 17:39 To: CF-Talk Subject: Re: Script to release lock on an Access

Re: Script to release lock on an Access database

2003-02-07 Thread Terry
Here's what I do: Upload new db with a different name, then rename. *** REPLY SEPARATOR *** On 2/7/2003 at 11:16 AM Phillip Cave wrote: It's be awhile since I've used MS Access as the database for a web application, so I'm not sure this question is even relevant for CF5 or MX.

RE: Script to release lock on an Access database

2003-02-07 Thread Larry Juncker
Just write a query to a bogus table in your DSN and it will break the lock ie: cfquery name=killDSNConnect dataource=[YourDSN] SELECT * FROM NOTHING /cfquery -Original Message- From: Terry [mailto:[EMAIL PROTECTED]] Sent: Friday, February 07, 2003 10:30 AM To: CF-Talk Subject: Re

Re: Script to release lock on an Access database

2003-02-07 Thread Bryan Stevenson
Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: Larry Juncker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, February 07, 2003 9:01 AM Subject: RE: Script to release lock on an Access database Just write a query to a bogus table in your

Re: SCRIPT

2002-03-14 Thread phumes1
Hi, How can I incorporate the history.back into the SCRIPT code below so it runs automatically? a href=javascript:history.back()font class=navlinks[Back]nbsp;/font/a script language=JavaScript type=text/javascript !-- window.location=http://localhost/test1/test2/test3/index.cfm;;

RE: SCRIPT

2002-03-14 Thread Steve Oliver
: Thursday, March 14, 2002 8:11 AM To: CF-Talk Subject: Re: SCRIPT Hi, How can I incorporate the history.back into the SCRIPT code below so it runs automatically? a href=javascript:history.back()font class=navlinks[Back]nbsp;/font/a script language=JavaScript type=text/javascript

RE: SCRIPT

2002-03-14 Thread phumes1
solutions, inc. http://www.atnetsolutions.com -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 8:11 AM To: CF-Talk Subject: Re: SCRIPT Hi, How can I incorporate the history.back into the SCRIPT code below so it runs automatically? a href

RE: SCRIPT

2002-03-14 Thread Steve Oliver
_ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 10:29 AM To: CF-Talk Subject: RE: SCRIPT Thanks. Can I also have it do a refresh of the previous

RE: SCRIPT

2002-03-14 Thread savan . thongvanh
) savan phumes1 [EMAIL PROTECTED] on 03/14/2002 09:28:59 AM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: RE: SCRIPT Thanks. Can I also have it do a refresh of the previous page once I go back? At 10:16 AM 3/14/2002 -0500, you wrote: script language

RE: SCRIPT

2002-03-14 Thread Ramin Surya
You can try: opener.location.reload() -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 9:29 AM To: CF-Talk Subject: RE: SCRIPT Thanks. Can I also have it do a refresh of the previous page once I go back? At 10:16 AM 3/14/2002 -0500, you

RE: SCRIPT

2002-03-14 Thread phumes1
#CGI.http_referer#/cfoutput'; /script _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 10:29 AM To: CF-Talk Subject: RE: SCRIPT

Re: SCRIPT

2002-03-13 Thread phumes1
I have the below code in one of my templates. Once the code below executes and takes me back to the previous page how can I do a refresh? window.history.back(refresh); ? script language=JavaScript type=text/javascript !-- window.history.back(); //-- /script

RE: script

2001-01-30 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Joshua, Your script, at it's simplest, does this: a href="javascript:window.external.AddFavorite('http://www.somesite.com' ,%20' somesite.com')" Please CLICK HERE!/a Maybe try that instead. Aaron Johnson, MCSE, MCP+I Allaire Certified

RE: script

2001-01-30 Thread Stolpner, Richard J
remove the carriage returns from within the document.write line. in this particular case, everything inside your 'if' condition should be on one line. -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Monday, January 29, 2001 10:59 PM To: CF-Talk Subject:

re: Script Kiddies

2000-12-26 Thread mikec
i guess you find nothing humorous about watching a highly paid, professional , who is too arrogant of his own abilities to keep up on his knowledge, get his ass handed to him by a 12 year old. :) Socially redeeming value or not, they are the future, not beacuse they have tried to learn to

RE: Script Kiddies

2000-12-26 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 i guess you find nothing humorous about watching a highly paid, professional , who is too arrogant of his own abilities to keep up on his knowledge, get his ass handed to him by a 12 year old. :) Socially redeeming value or not, they are the

RE: Script Kiddies

2000-12-26 Thread Marcus
i guess you find nothing humorous about watching a highly paid, professional , who is too arrogant of his own abilities to keep up on his knowledge, get his ass handed to him by a 12 year old. :) Nope... I see nothing humorous at all about watching a highly paid professional, WHO DOES keep up

re: Script Kiddies

2000-12-26 Thread Michael She
I agree. The youth of today are the leaders of tomorrow. But, what many young people don't understand is that we still have to learn from "older" people. I'm not talking about technology, but EQ skills, management skills, and other skills that come only from experience. I know, because I'm

Re: Script Kiddies

2000-12-26 Thread David E. Crawford
I just want to make sure I have this straight: Dave Watts and I (by extension) are too arrogant to keep up thus we will be smacked by a 12 year old. I don't see the logic in this nor any basis in reality. What do you know of the technical abilities of the other people on this list? The

Re: [RE: Script Kiddies]

2000-12-26 Thread Alex
Today's script kiddie is tomorrows professional This statement is the most ludicrous thing I have ever heard. Do you know what a script kiddie is? And what a professional is? Cutting and pasting code is drastically different than finding and writing an exploit tool. Most script kiddies do not

Re: Script Kiddies

2000-12-26 Thread Jay Patton
: "Marcus" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, December 26, 2000 3:11 PM Subject: RE: Script Kiddies i guess you find nothing humorous about watching a highly paid, professional , who is too arrogant of his own abilities to keep up on his knowledge

RE: [RE: Script Kiddies]

2000-12-26 Thread lsellers
Today's script kiddie is tomorrows professional This statement is the most ludicrous thing I have ever heard. Do you know what a script kiddie is? And what a professional is? Agreed. By definition an sk is someone who is too ignorant of how things work to do it themselves. Ie,