RE: Client Variables

2002-03-22 Thread savan . thongvanh

the client management stuff is kept in the URL.  The URL will show if
they've visited or not or possibly timed out or not, it appends the id and
token to the url.




Bosky, Dave [EMAIL PROTECTED] on 03/22/2002 08:37:41 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Client Variables


So if User A has already been to index.cfm it will automatically discover
the client.urltoken and if User B hasn't been to index.cfm it will create
it?
How can it do this without using a cookie and how does it differentiate
User
A from User B?

Dave


-Original Message-
From: Pascal Peters [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 22, 2002 9:05 AM
To: CF-Talk
Subject: RE: Client Variables

CF creates it if it doesn't exist. This means on the page the user calls
first. On the next pages it exists if you passed it on the url.

-Original Message-
From: Bosky, Dave [mailto:[EMAIL PROTECTED]]
Sent: vrijdag 22 maart 2002 15:00
To: CF-Talk
Subject: Client Variables


If I have clientmanagement =yes and setclientcookies=no in my
application.cfm file, how does cf identify specific users in the index.cfm
file?
I understand you must append the client.urltoken to all pages if
setclientcookies=no but how does index.cfm find the client.urltoken?
Probably a silly question with a simple answer...

Dave








__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Link Tables Vs. Joins

2002-03-19 Thread savan . thongvanh

Do you guys/gals use link tables?  how much benefit do you really get from
using them?

I'm working w/ a developer that seems to want to use a link table for every
little thing.  I understand that they help reduce the amount of data that's
repeated but are they worth it?

I've ignored link tables and built pages from Joins if i need different
table data.

opinions here?

thanks,
Savan

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Flash MX

2002-03-18 Thread savan . thongvanh

anything official on how big the change is going to be?  is it going to be
analogous to a change in the javascript DOM?




Cantrell, Adam [EMAIL PROTECTED] on 03/18/2002 12:10:14 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Flash MX


I've heard that the actionscript environment is going to be changed quite a
bit in the newer version but haven't looked into it much. Is all of this
actionscript that I'm learning in flash5 going to be worthless in flashMX,
or is it good that I'm learning it now? Anything I should skip over, pay
more attention to?

Adam.


 -Original Message-
 From: Douglas Brown [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, March 17, 2002 5:36 PM
 To: CF-Talk
 Subject: Flash MX


 Well I must say that I just about peed myself after just
 trying out flash MX for the first time. This is so
 awesome No more floaters to get in the way, better use of
 the timeline etc..the list just goes on and on and on..kind
 of like the Energizer Macromedia Bunny !!!:)



 Success is a journey, not a destination!!



 Doug Brown



__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT New window

2002-03-15 Thread savan . thongvanh

call the OpenWindow function with at timestamp as the title

openWindow(strURL, new Date(), intWidth, intHeight);





Ray Bujarski [EMAIL PROTECTED] on 03/15/2002 12:41:14 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT New window


I am using the following code to open a new window.  However when one
window has already been spawned from the opener, any more new windows
simply re-use the same one.  I need to open a new window every time,  (My
users REALLY want to annoy themselves;-)  Can anyone tell me how to get the
below code to do such a thing?

SCRIPT LANGUAGE=javascript
!--
function OpenWindow(strURL, strTitle, intWidth, intHeight)
 {
 var intWindowLeft
 var intWindowTop
 var msgWindow

 // find out the numbers to center the screen.
 intWindowLeft = (screen.width - intWidth) / 2;
 intWindowTop = (screen.height - intHeight) / 2;

 msgWindow =
window.open(strURL,strTitle,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width

'
+ intWidth + ',height=' + intHeight + ',left=' + intWindowLeft + ',top=' +
intWindowTop);
 }
//--
/SCRIPT
Thanks!


Ray Bujarski
858-845-7669
858-636-9900 pgr
[EMAIL PROTECTED]


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: One call for two pages?

2002-03-15 Thread savan . thongvanh

you should just reload the lower frame onload of the upper.

parent.html
 -frame1.html
 -frame1.html

in frame1.html just go:

body onload=top.frames[1].location=top.frames[1].location;




Dave Carabetta [EMAIL PROTECTED] on 03/15/2002 12:59:20 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  One call for two pages?


I'm trying to do something here that I don't think is possible, but thought
I'd throw it out there to confirm.

Quick Overview:
I'm building an app that has a frames-based module. The frames are split
50-50 horizontally -- nothing complex. In the top frame, the user makes any
appropriate modifications to data. On submission, the lower frame (which
contains an ongoing report) auto-refreshes to reflect the new data.

The problem:
On submission, both the top frame and the bottom frame make the same exact
call to the server to get the new data. I know that may sound strange, but
believe me, it does make sense for me. I'm wondering if it's possible to
make this call to the server and have the resulting record set available to
both pages in the frame set so that I only have to make the call once
instead of twice per refresh?

Any ideas? I've been thinking along the lines of a hidden frame that makes
the call, but I can't quite put my finger on how that helps my situation
any.

Thanks in advance,
Dave.

_
Send and receive Hotmail on your mobile device: http://mobile.msn.com


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT New window

2002-03-15 Thread savan . thongvanh

simple.  just like me.  :P




Greg Alton [EMAIL PROTECTED] on 03/15/2002 01:17:52 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: OT New window


Simple is beautiful! Great idea!

Greg Alton
CFDev

- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, March 15, 2002 1:50 PM
Subject: Re: OT New window


 call the OpenWindow function with at timestamp as the title

 openWindow(strURL, new Date(), intWidth, intHeight);





 Ray Bujarski [EMAIL PROTECTED] on 03/15/2002 12:41:14 PM

 Please respond to [EMAIL PROTECTED]

 To:   CF-Talk [EMAIL PROTECTED]
 cc:

 Subject:  OT New window


 I am using the following code to open a new window.  However when one
 window has already been spawned from the opener, any more new windows
 simply re-use the same one.  I need to open a new window every time,  (My
 users REALLY want to annoy themselves;-)  Can anyone tell me how to get
the
 below code to do such a thing?

 SCRIPT LANGUAGE=javascript
 !--
 function OpenWindow(strURL, strTitle, intWidth, intHeight)
  {
  var intWindowLeft
  var intWindowTop
  var msgWindow

  // find out the numbers to center the screen.
  intWindowLeft = (screen.width - intWidth) / 2;
  intWindowTop = (screen.height - intHeight) / 2;

  msgWindow =

window.open(strURL,strTitle,'toolbar=0,location=0,directories=0,status=0,men

ubar=0,scrollbars=0,resizable=0,width

 '
 + intWidth + ',height=' + intHeight + ',left=' + intWindowLeft + ',top='
+
 intWindowTop);
  }
 //--
 /SCRIPT
 Thanks!


 Ray Bujarski
 858-845-7669
 858-636-9900 pgr
 [EMAIL PROTECTED]




__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: One call for two pages?

2002-03-15 Thread savan . thongvanh

haha, i totally screwed up that post.

instant replay

this is kindof a wacky situation.  as far as I know there are few ways to
make a recordset, or data in general, available across frames.

in this case I would use a wddx recordset.
-i'd run the query in the upper frame
-return it to the page as a wddx recordset to the page
-onload of the upper i'd refresh the lower
-onload of the lower have it look at the wddx recordset in the upper and
build your page from there

kinda messy.  interesting problem that i've never really seen a good
solution to.

you CAN refer to variables in other frames from the same domain.

am i making sense here or am i speaking FridayAfternoonGettingTired
language here?





Dave Carabetta [EMAIL PROTECTED] on 03/15/2002 01:27:11 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: One call for two pages?


you should just reload the lower frame onload of the upper.

parent.html
  -frame1.html
  -frame1.html

in frame1.html just go:

body onload=top.frames[1].location=top.frames[1].location;


Maybe I'm missing what you're getting at, but I'm not sure how that helps
my
situation. I know how to auto-refresh the bottom frame -- that's not the
hard part. What I want is for the query that runs in the top frame to be
available for the bottom frame as well.

So ideally:

-- parent frame which contains framset markup
   -- run query for both frames
   -- load top frame using above recordset
   -- load bottom frame using same recordset

Using the onLoad handler doesn't allow the query in the top frame to be
available to the bottom frame, does it?

Regards,
Dave.

_
Send and receive Hotmail on your mobile device: http://mobile.msn.com


__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Fusebox pros and cons

2002-03-14 Thread savan . thongvanh

not being contradictory here but,

how does too much client envolment hinder a well written application?  most
of the clients i've worked with don't have the CF skillset in the
organization so I've been able to keep everything pretty clean, as our
individual interpretations of clean go.  I would think that our service
is applying technology to business rules.  if they, the consumers, don't
know the tech., how can they have destructive input?

possibly just lucky w/ the clients i've had?...savan




Jeffry Houser [EMAIL PROTECTED] on 03/13/2002 07:05:04 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Fusebox pros and cons


  I think he meant Daves.
  There is usually too much client involvement for a well written
applications to exist.  It is the curse of being the service industry.

At 04:24 PM 3/13/2002 -0600, you wrote:
What?  well written applications? Or Daves?

-Original Message-
From: Cary Gordon [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 13, 2002 11:31 AM
To: CF-Talk
Subject: RE: Fusebox pros and cons


Based on his contributions to this list, I'd guess that there are about a
dozen...

At 09:11 AM 3/12/2002 -0800, you wrote:
--- snip ---
 it is
 true that any well written CF Application should be logical and
structured
 but there aren't that many Dave Watt's et al in the real CF World,  My
 sixpence worth.
 
 Mike Brunt
 Sempra Energy
 213.244.5226




__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Fusebox pros and cons

2002-03-14 Thread savan . thongvanh

i read ya.  :-)




Ian Lurie [EMAIL PROTECTED] on 03/14/2002 09:09:25 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Fusebox pros and cons


That's easy: When a client starts a sentence with 'Wouldn't it be easy
to...', and you've already completed requirements collection, and done all
the stuff you're supposed to to prevent scope creep, but know that you're
in
for a fight anyway.

That's 'destructive' input.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 14, 2002 6:56 AM
To: CF-Talk
Subject: RE: Fusebox pros and cons


not being contradictory here but,

how does too much client envolment hinder a well written application?  most
of the clients i've worked with don't have the CF skillset in the
organization so I've been able to keep everything pretty clean, as our
individual interpretations of clean go.  I would think that our service
is applying technology to business rules.  if they, the consumers, don't
know the tech., how can they have destructive input?

possibly just lucky w/ the clients i've had?...savan




Jeffry Houser [EMAIL PROTECTED] on 03/13/2002 07:05:04 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Fusebox pros and cons


  I think he meant Daves.
  There is usually too much client involvement for a well written
applications to exist.  It is the curse of being the service industry.

At 04:24 PM 3/13/2002 -0600, you wrote:
What?  well written applications? Or Daves?

-Original Message-
From: Cary Gordon [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 13, 2002 11:31 AM
To: CF-Talk
Subject: RE: Fusebox pros and cons


Based on his contributions to this list, I'd guess that there are about a
dozen...

At 09:11 AM 3/12/2002 -0800, you wrote:
--- snip ---
 it is
 true that any well written CF Application should be logical and
structured
 but there aren't that many Dave Watt's et al in the real CF World,  My
 sixpence worth.
 
 Mike Brunt
 Sempra Energy
 213.244.5226






__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Fusebox pros and cons

2002-03-14 Thread savan . thongvanh

you got my point exactly.




Jeffry Houser [EMAIL PROTECTED] on 03/14/2002 09:17:26 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Fusebox pros and cons


  I was being sarcastic, meaning that clients will always come up with some
foolish idea.  From a recent discussion here, having the local weather
(Relative to home office) taking up 90% of the Corporate Intranet homepage
when the bulk of the users are from a remote location.  I believe your
standpoint is that even though that may be a bad design decision, it
doesn't mean that the code is written poorly?  I was referring to an
application as a whole, including the GUI.

  Although on another note, most of my clients do have CF Skill in some
extent.  I'm usually hired specifically for my database design skills or
other 'big / complicated stuff.' They do the simple stuff on there own.  It
has both benefits and problems.  On one of my last projects, I bid out to
add 'X, Y, Z' functionality to the site.  The client thought I was going to
also re-code everything he had coded in the 'right' way.  There is a big
communication gap there, as you can imagine.


At 08:55 AM 3/14/2002 -0600, you wrote:
not being contradictory here but,

how does too much client envolment hinder a well written application?
most
of the clients i've worked with don't have the CF skillset in the
organization so I've been able to keep everything pretty clean, as our
individual interpretations of clean go.  I would think that our service
is applying technology to business rules.  if they, the consumers, don't
know the tech., how can they have destructive input?

possibly just lucky w/ the clients i've had?...savan




Jeffry Houser [EMAIL PROTECTED] on 03/13/2002 07:05:04 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Fusebox pros and cons


   I think he meant Daves.
   There is usually too much client involvement for a well written
applications to exist.  It is the curse of being the service industry.

At 04:24 PM 3/13/2002 -0600, you wrote:
 What?  well written applications? Or Daves?
 
 -Original Message-
 From: Cary Gordon [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, March 13, 2002 11:31 AM
 To: CF-Talk
 Subject: RE: Fusebox pros and cons
 
 
 Based on his contributions to this list, I'd guess that there are about
a
 dozen...
 
 At 09:11 AM 3/12/2002 -0800, you wrote:
 --- snip ---
  it is
  true that any well written CF Application should be logical and
structured
  but there aren't that many Dave Watt's et al in the real CF World,  My
  sixpence worth.
  
  Mike Brunt
  Sempra Energy
  213.244.5226
 
 
 



__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SCRIPT

2002-03-14 Thread savan . thongvanh

just a reminder that using the back() method of the history object is going
to go back one step at the top level document of the window.  if you have a
frameset you might inadvertently take a user off your site.  if you have
problems w/ that, and as i personally prefer, try using history.go(-1)

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=JavaScript type=text/javascript
!--
  window.history.back();
//--
/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 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
!--
  window.location=http://localhost/test1/test2/test3/index.cfm;;
//--
/script




+---
+

Philip Humeniuk
[EMAIL PROTECTED]

Hagar, how will I know when it's time to get married?
One day you'll wake up with the definite feeling that it's the time.
Then what should I do?
Go back to sleep until the feeling goes away!
+---
-+





__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HELP NEEDED

2002-03-14 Thread savan . thongvanh

i love cf and all but since you're doing all that perl stuff wouldn't it be
easier to accomplish that w/ a perl cgi script?

c'anyone tell i'm having a slow day? :P




Allan Pichler [EMAIL PROTECTED] on 03/14/2002 09:24:14 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  HELP NEEDED


I have a little problem guys and i need your help!

I've made a little perl script that runs every 5 minutes, it checks a MySQL
DB to see if there's any mailjobs scheduled that needs to be executed.

If there's jobs in queue it runs another perl script with the id of the
mailjob as an argument.

Now my problem is this ... I'm making a web interface to setup the
mailjobs,
and in this interface I would like to have a Test Mailjob button that
shows a form where the user can specify a test email account to send X test
mails to.

How do I get CF to execute a perl script on another server with some
commandline arguments 

Please help out if you can!

@llan

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Mail tags

2002-03-14 Thread savan . thongvanh

is there a pop tag or tagset out there?  ie for marking messages on the pop
server read, for deletion, etc.?

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT Thank god for markup

2002-03-14 Thread savan . thongvanh

Situation: Studying for Sun Java Cert

Question:
What the !@#$#$  is the point of a bitwise operator?

can someone give me a reason that i would EVER want to use

1011103

and isn't the result

000100

changing the most significant byte to preserve the sign?

OI!

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: file/mime types

2002-03-13 Thread savan . thongvanh

if you're using windows the best place to look for file types is the
registry.  particularly since the types in the registry are ones that are
supported on your computer :)




Paul Giesenhagen [EMAIL PROTECTED] on 03/13/2002 11:13:58 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  file/mime types


Does anyone have a good link to a listing of valid file mime types that I
could use?

I need it for cffile .. need to find the right syntax to include audio and
video

Thanks

Paul Giesenhagen
QuillDesign
http://www.quilldesign.com
SiteDirector - Commerce Builder v2.0


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF Certification for 5.0 rolling over to next version?

2002-03-05 Thread savan . thongvanh

welcome to the world of professional certification :)  :P




Dave Carabetta [EMAIL PROTECTED] on 03/04/2002 06:04:07 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: CF Certification for 5.0 rolling over to next version?


I remember way back when they upgraded my CF 4.5 cert to 5.0 withou
t making
me take the test, they said in the generic letter that Neo (now called
ColdFusion MX) would require actually re-taking an upated cert test.

If you think about it, it makes sense considering all the new features 
in
CF
MX. ;)

Regards,
Dave.


- Original Message -
From: Garza, Jeff [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, March 04, 2002 06:16 PM
Subject: CF Certification for 5.0 rolling over to next version?


 I'm thinking of taking the plunge and getting certified, but I'm curi
ous
if
 the certification for CF5.0 will carry over to the next version. 
 Or will
a
 completely separate test be needed.  I'd hate to waste the money no
w and
 have to re-certify with the next version Anyone from Macr
omedia want
to
 chime in on this?

 Jeff Garza


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Application Models

2002-03-05 Thread savan . thongvanh

Can someone lend a guiding light here?  what are the differences and or
similarities between Fusebox, Net, and JSP Struts?  Can a parallel
comparison be made or are they all too different?

Thanks-
Savan
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://wwwpennyhostcom/redirectcfm?adcode=coldfusionc
FAQ: http://wwwthenetprofitscouk/coldfusion/faq
Archives: http://wwwmail-archivecom/cf-talk@houseoffusioncom/
Unsubscribe: http://wwwhouseoffusioncom/indexcfm?sidebar=lists



Re: Rotating banners

2002-03-05 Thread savan . thongvanh

i've done this by using time.  it's kind of 2 fold.

Weight 6
ad1,ad2,ad3,ad4

weight 3
ad5, ad6, ad7, ad8

-I'd assign the weight of each banner before hand.
-Grab the last digit in the seconds of the current time.
-Display an ad from the weight group that corresponds w/ the time integ
er

i.e.
if the last digit in the time was 6 it would display an ad w/ a weight 
of 6
or higher and if it was 3 it'd display ads from the 3 weight group.

if i wanted an ad to have a chance of being displayed 70% of the time i
'd
set it to weight 3.

make sense?  i would actually like to see a cleaner way of doing but th
at
works.

Savan




Elizabeth Walter [EMAIL PROTECTED] on 03/05/2002 12:14:29 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Rotating banners


Hello-

I am developing a banner rotating tool and need some ideas on how to be
st
handle a requirement.  I have gotten the tool to a point where it dis
plays
banners randomly- no problem.  Now what I need to do is give certain
banners
more weight than others:  some banners need to be displayed more
frequently than the rest.  The code that I have below gives equal wei
ght to
each banner; I need to find a way to give some banners more prevalence 
on
our pages.


 cfset activeBanners=arrayNew(1)

 cfoutput query=qryActive
  cfset activeBanners[#qryActive.currentRow#] = #id#
 /cfoutput

 cfset rows = arrayLen(activeBanners)

 cfset randomId = randRange(1,#arrayLen(activeBanners)#)

 cfquery datasource=#dsn# name=qryBanners
 SELECT
  i.*,
  a.advert_name
 FROM
  images i, advertiser a
 WHERE
  i.id = #activeBanners[randomId]# and
  i.advert_id = a.advert_id
 /cfquery


Any ideas?

Thanks in advance,
Elizabeth


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Multi Processor Server Config

2002-03-05 Thread savan . thongvanh

In win2k, i dont remember exactly where it is, you can assign certain
processes to a processor manually.




Dave Watts [EMAIL PROTECTED] on 03/05/2002 12:48:25 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Multi Processor Server Config


 I have just recieved my new CF Server 5 upgrade and have
 a brand new system with multi processors. Does anyone know
 how to configure the server so that it takes full advantage
 of both these processors? I am running win2000 with IIS.

You shouldn't have to do anything, really, as Win2K should take care of

that
for you automatically. Typically, you might have a higher optimal val
ue
within the Limit Simultaneous Requests setting in the Settings page o
f
the
CF Administrator, but you really have to load-test to find that optimal

value anyway.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT Flashguru and Macromedia

2002-03-04 Thread savan . thongvanh

Does anyone know what happened to Macromedia's Link to a site called
flashguru or something to that effect?  They used to have a like to it as
a reference to flash resources but now i can't find any trace of it

Thanks-Savan
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://wwwpennyhostcom/redirectcfm?adcode=coldfusionb
FAQ: http://wwwthenetprofitscouk/coldfusion/faq
Archives: http://wwwmail-archivecom/cf-talk@houseoffusioncom/
Unsubscribe: http://wwwhouseoffusioncom/indexcfm?sidebar=lists



Re: too much cookie?

2002-02-27 Thread savan . thongvanh

depends on how much else you're sending back and forth but more than li
kely
not.

(speaking AS a dialup user :)  )




[EMAIL PROTECTED] on 02/26/2002 05:52:48 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  too much cookie?


I'm wondering if using a cookie back and forth extensivly cause any
bottleneck between user  server.
will a 1-3Kb byte of cookie information is noticeable to a dialup user?


Any1?


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT JS again

2002-02-27 Thread savan . thongvanh

sorry for all the js stuff today.

have a function to write a select box of states.  is it faster, in general,
to write text to a page with a function or return a string and write the
string?

Thanksabunch,
Savan
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Closing a window from JS without prompt?

2002-02-27 Thread savan . thongvanh

that snippet didn't work in either NS or IE for me

IE didn't even load the page and NS bombed because it said that closes 
was
not defined

i just pasted that snippet into a page.

is there something else that needs to be done?




Justin Waldrip [EMAIL PROTECTED] on 02/27/2002 01:17:54 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Closing a window from JS without prompt?


I have an app that opens up a window full screen and then I need to
close the parent window that is behind it. So what I did was added th
e
object code below to the head and then refresh the parent window with
the onload function that initiates and closes the parent window. Work
s
like a champ for me. You might have to play around with it depending 
on
your need.

html
head
 titleUntitled/title
 !--- // Must have this in the head // ---
 object id=closes type=application/x-oleobject
classid=clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11
  param name=Command value=Close
 /object
/head

script
function closeme() {
 closes.Click();
}
/script


body onload=document.form.CloseArea.focus();

form
 input type=text name=CloseArea onfocus=closeme()
style=width: 0px;
/form

/body
/html

-Original Message-
From: Shawn Grover [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 27, 2002 1:04 PM
To: CF-Talk
Subject: OT: Closing a window from JS without prompt?

I'm looking for ideas on how to close a Parent window from Javascript
without getting the confirmation prompt.
We don't have an issue with any child windows, but we open an interface

to
our app then want to close the original window without the prompt.

Any tips?  Thanks in advance.

Shawn Grover


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Closing a window from JS without prompt?

2002-02-27 Thread savan . thongvanh

i would use a javascript function to open the window and subsequently c
lose
itself.  If there are any URLs in the history of a window it cannot c
lose,
with javascript, without a prompt (up to IE 5.5 and NS 4.7).  I'm
 not sure
about version 6s.

Savan




Macarie Neculai [EMAIL PROTECTED] on 02/27/2002 11:25:31 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: Closing a window from JS without prompt?


Hi!

As far as I know you cannot close a parent window from a child, but
 I
think you can try something like this:
1. call setTimeout(closeFunction, 2000)
2. open the child window from the parent
3. in closeFunction you close your parent window and I think you get 
no
confirmation promt.

HTH,
Mack


- Original Message -
From: Shawn Grover [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, February 27, 2002 11:04 AM
Subject: OT: Closing a window from JS without prompt?


 I'm looking for ideas on how to close a Parent window from Javascript

 without getting the confirmation prompt.
 We don't have an issue with any child windows, but we open an interfa
ce
to
 our app then want to close the original window without the prompt.

 Any tips?  Thanks in advance.

 Shawn Grover


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT Javascript: Date Parsing

2002-02-22 Thread savan . thongvanh

day like, day name? or day like the day number in a date?

The Javascript Date() object does not have a day name property, howev
er
you can get the day number and date number


today=new Date(some date);  //this syntax isn't correct but you get
 the
picture
indexedDay=today.getDay() //will set indexed day to a zero base
d number
starting from sunday
indexedDate=today.getDate()   //will give you what day of the month
 it is
as an int

does that answer your ?




Ray Bujarski [EMAIL PROTECTED] on 02/21/2002 04:15:33 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT Javascript: Date Parsing


Does anyone know how to parse the day out of a given date in javascript
.

I want to do the equivalent of datepart(d, thisDate).

form name=sessionWatch
cflock scope=SESSION timeout=3 type=READONLY
 cfoutputinput type=hidden name=seshTimeOut
value=#session.timeout#/cfoutput
/cflock
/form

var ses=new Date();
var yrJS = ses.getYear(, document.sessionWatch.seshTimeOu
t.value);
var monJS = ses.getMonth(m, document.sessionWatch.seshTimeOut
value);
var dJS = ses.getDay(d, document.sessionWatch.seshTimeOut.v
alue);
var hJS = ses.getHour(h, document.sessionWatch.seshTimeOut.
value);
var nJS = ses.getMinutes(n, document.sessionWatch.seshTimeOut
value);
var sJS = ses.getSeconds(s, document.sessionWatch.seshTimeOut
value);

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



GET Size

2002-02-22 Thread savan . thongvanh

what is the max length of a GET request?
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT Javascript associative arrays

2002-02-22 Thread savan . thongvanh

anyone know how to loop through and dump values from an associative array?
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Use of Style Sheets

2002-02-22 Thread savan . thongvanh

sure,
that's the exact kind of thing css is good for.

just include the style sheet and when you cfoutput your results throw
 a
style tag in the output
cfouput
p class=heading#title#/p
span class=description#description/span
/cfoutput

is that what you mean?




Burcham, Steve [EMAIL PROTECTED] on 02/22/2002 11:19:51 A
M

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Use of Style Sheets


Has anyone used CSS to display the search text in a different color or 
font
weight, within a description field? I want my search text to be clearly

displayed, kind of like the way Google displays all of the words you se
arch
on in bold in the description of the linked website.

Or does anyone know of a better way to do this?

Thanks, Steve


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: RegEx rookie question

2002-02-22 Thread savan . thongvanh

how about

/^[a-z0-9]{n}X/i

where n is the index of the character and X is the character?




Howie Hamlin [EMAIL PROTECTED] on 02/22/2002 11:50:58 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RegEx rookie question


Is there a way to check for a character in a specific position in a str
ing?
For example, say I want to make sure that the 10th
character in a string is an X.

This would be a match: 123456789X12345

Would I have to use a pattern like ?X

or is there something more elegant?  Using something like the above wou
ld
be cumbersome for matching the 125th character, for
example.

Thanks,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-4668
 x101
inFusion Mail Server (iMS) - The Intelligent Mail Server
 Find out how iMS Stacks up to the competition:
http://www.coolfusion.com/imssecomparison.cfm


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Form Data - Post

2002-02-14 Thread savan . thongvanh

i read this thread and found it interesting.  i don't know the answer
 and
wan unable to find it.  I know that at the length of the data in a GE
T
messgage is fixed and limited by constraints on valid URL formatting.

However, post is obviously not.  I couldn't find any concrete info on
 the
POST length and I went as far as looking into the ISO for http.  That
 leads
me to believe that there isn't one.

I don't see how that can really be any practical limit on a POST messag
e
since you can use it so send a file input stream.

anyone have insight here?





Jon Hall [EMAIL PROTECTED] on 02/14/2002 12:44:37 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: Form Data - Post


Why not set an arbitrary maxlength on the field?

jon

Eric Homa wrote:
 Hi,

 Anyone know if there is a limit on the number of characters that can 
besubmitted from the client browser to the server using cfform meth=
post?

 I am using a couple of memo fields along with other fields and it's w
or
ked
 for 4 months.  Today the customer called and described an error mes
sage
 that
 he was getting.  It is an error message from my code when I check f
or t
he
 existence of a field (IsDefined) that directly follows one of the mem
o
 fields.  I'm think that he copied and pasted so much data into the 
form
 field that the browser (or the protocol) cannot handle it.

 Any ideas?

 Thanks,

 Eric Homa




__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: manipulating Tab key in forms

2002-02-13 Thread savan . thongvanh

the curser _will_ move out of the form to the next link once it has
reached the final tab index.




Tony Schreiber [EMAIL PROTECTED] on 02/13/2002 10:00:33 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: manipulating Tab key in forms


IE has a tabindex value for form fields, but I don't know if this will
cause it to ignore links, it might...

 Is it possible to manipulate the Tab key so that it
 only tabs between fields, and not to text in a form? I
 have form fields with pop-up hints for each field, but
 whem users hit Tab, it highlights the links.  I need
 it to skip the links and tab to the next field.

 Thanks,
 Tim

 __
 Do You Yahoo!?
 Send FREE Valentine eCards with Yahoo! Greetings!


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



WDDX

2002-02-13 Thread savan . thongvanh

I'm not sure if this is OT or not but here goes...



Why would I use WDDX instead of just using straight XML?

-there are SEVERAL good parsers out there.

-The javascript that it takes to create the packets is not that complex.

-The packets aren't really any kind of packets their just strings that
  are parsed...XML?

and more...



I actually am interested in using it and I have no direct quams with using
  WDDX but why would I use it when we have an XML framework already
  built for other applications?



Thanks-

Savan
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: oracle performance

2002-02-13 Thread savan . thongvanh

depending on what system your on the native drive actually may not be t
he
fastest.  i've found cases where an MSODBC driver was faster than the

vendor connection.




Andre Turrettini [EMAIL PROTECTED] on 02/13/2002 11:52
:09 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  oracle performance


Hi Were in the midst of setting up a fairly large cf5 app on oracle usi
ng
the native connection.  Were finding that the connection isnt as fast
 as
we'd expect.  Also, enabling client vars(db) seems to compound the pr
oblem.
Anybody got any tuning tips or seen anything like this?

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: MySQL Cold Fusion Question?

2002-02-13 Thread savan . thongvanh

depending on the size of the db i think the easiest solution, from a
development standpoint, would be to
copy the access db to the mysql server,
create a dsn to it,
read all the records from access,
and write them back to identical tables in the mysql db

anyone think of something quicker?




Jim McAtee [EMAIL PROTECTED] on 02/13/2002 04:13:06 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: MySQL Cold Fusion Question?


- Original Message -
From: Carlisle, Eric [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, February 13, 2002 2:47 PM
Subject: RE: MySQL Cold Fusion Question?


 Would you want to convert so you can easily view table data?  If so, 
it
may
 be better to have Access link to mySQL tables via ODBC.  Access wor
ks
well
 to view mySQL table data.  Not sure about actual conversions, thoug
h.


Can you explain how to link from Access via ODBC to another database.
  For
example, I'm working at Machine A, and the MySQL database resides on
Machine
B (with CF server, IIS, etc.).  I've got an ODBC datasource set up 
on
Machine B for use by CF.  Where do I create the Access database?  If 
I try
creating the Access DB from machine A, and try to link via ODBC, I can 
only
see ODBC datasources located on the local machine.  On the server its
elf, I
don't have Access installed.

Thanks,
Jim

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: excessive server restarts

2002-02-06 Thread savan . thongvanh

looks like you're going to have to do some CF or system log reading.




Jennifer Knoblock [EMAIL PROTECTED] on 02/06/2002 12:32:10 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: excessive server restarts


Is it really going to make that much difference? Does 5.0 on Linux ru
n th
at much
better?

Michael Corrigan wrote:

 Yeah, upgrade to 5.0 ;-)

 Michael Corrigan
 Programmer
 Endora Digital Solutions
 1900 S. Highland Avenue, Suite 200
 Lombard, IL 60148
 630-627-5055 x-136
 630/627-5255 Fax
   - Original Message -
   From: Jennifer Knoblock
   To: CF-Talk
   Sent: Wednesday, February 06, 2002 10:37 AM
   Subject: excessive server restarts

   My CF Server 4.5 SP2 Professional for Linux has restarted 11 time
s
   already today (11:30 am). Yesterday it restarted 30 times. A fe
w
   days ago it was only 5 or 6 times. Can someone tell me why it's
   doing this and how to fix it?

   Thanks!
   Jen



__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfselect and required=yes

2002-02-05 Thread savan . thongvanh

You can require a select in a drop down to be selected by either
validating the field with javascript, if you want to use a title option

like select an option as the first item, or by creating the select wi
th
no blank values and setting a default option by using the keyword selec
ted
as follows for EITHER NS or IE

script
function validate(myForm){

 if(myForm.mySelect.indexOf==0){
 itsSelected=false;
 }

return itsSelected;
}

/script
body
form action= method=POST onsubmit=return validate(this)
select name=mySelect
optionSelect an option/option
optionOption 1/option
optionOption 2/option
optionOption 3/option
/select

//or to do it without javascript
select
option value= selectedOption 1/option
option value=Option 2/option
option value=Option 3/option
/select
//
/form
/body




Christopher Olive [EMAIL PROTECTED] on 02/05/2002 08:42:3
5 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: cfselect and required=yes


um...yes it does.

christopher olive, cto, vp of web development
atnet solutions, inc.
410.931.4092
http://www.atnetsolutions.com


-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 05, 2002 4:59 AM
To: CF-Talk
Subject: RE: cfselect and required=yes


One Gotcha to look out for is Netscape *does not* select an option by
default in a dropdown.


Kola Oyedeji
Web developer
Macromedia Certified Advanced ColdFusion 5 Developer
ekeda ltd
http://www.ekeda.co.uk
(+44)020-8429-7300


 -Original Message-
 From: Dave Watts [mailto:[EMAIL PROTECTED]]
 Sent: 04 February 2002 19:03
 To: CF-Talk
 Subject: RE: cfselect and required=yes


  I can never get the required attribute to work on cfselect
  is there a trick?

 Unless you create a multi-select box, any HTML SELECT, including one
 generated with CFSELECT, will always have an item selected.
 The REQUIRED
 attribute only affects multi-select boxes.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 phone: 202-797-5496
 fax: 202-797-5444



__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT: Anybody heard of this?

2002-02-05 Thread savan . thongvanh

haha, cute trick huh?  at least in IE it asks you if you want to set it
 or
not.




Dave Watts [EMAIL PROTECTED] on 02/05/2002 09:03:01 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: OT:  Anybody heard of this?


  I has some spam in my email this morning. It immediately
  popped me to a porn site. What it did though, was reset
  my start page through their server, and I now, cannot
  reset my start page.
 
  If I go into Internet Options, it does not allow me to
  change the Start Page settings. What's the fix for this?

 http://ftp.mozilla.org/pub/mozilla/releases/mozilla0.9.8/mozi
l
 la-win32-0.9.8-installer.exe

If that's the fix, I'd stick with the porn home page myself.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Anybody heard of this?

2002-02-05 Thread savan . thongvanh

ns will do it no ?'s asked.  if ie does it you may have your security

settings set to extra super duper low :)




Dave Hannum [EMAIL PROTECTED] on 02/05/2002 09:25:10 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: OT: Anybody heard of this?


It didn't ask me nothing!  It just did it.

Dave


- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, February 05, 2002 10:05 AM
Subject: RE: OT: Anybody heard of this?


haha, cute trick huh?  at least in IE it asks you if you want to set it

 or
not.




Dave Watts [EMAIL PROTECTED] on 02/05/2002 09:03:01 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: OT:  Anybody heard of this?


  I has some spam in my email this morning. It immediately
  popped me to a porn site. What it did though, was reset
  my start page through their server, and I now, cannot
  reset my start page.
 
  If I go into Internet Options, it does not allow me to
  change the Start Page settings. What's the fix for this?

 http://ftp.mozilla.org/pub/mozilla/releases/mozilla0.9.8/mozi

l
 la-win32-0.9.8-installer.exe

If that's the fix, I'd stick with the porn home page myself.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444



__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: pdf

2002-01-30 Thread savan . thongvanh

can you do a browser check for the acrobat plugin and redirect if false
?




[EMAIL PROTECTED] (John Dowdell) on 01/30/2002 03:11:27 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: OT: pdf


At 5:39 AM 1/29/2, Steven Dworman wrote:
 A client has an extremely important pdf that they want locked down.

 What this means is that they want to burn it on a cd, make the cd
 copy protected, and not allow the user to save the file after it's
 been opened.  On top of that they want to prevent the user from
 doing a select all copy paste. Can this be done?

Sorry, I don't think so. The PDF format is like the SWF format this w
ay...
both are publicly documented, and both contain bits which set permissio
n
levels. But not all PDF or SWF readers have to respect those permissi
on
levels. You can print an unprintable PDF by opening it in GhostScri
pt or
other PDF readers.

(I haven't used GhostScript myself, but have read enough accounts to fe
el
confident of this understanding.)

The Adobe E-books strategy used a level of encryption beyond this. Bu
t once
it was unencrypted for reading, the content could then have its permiss
ion
levels bypassed in the usual way. This was the essence of the Free D
mitry
case... someone who purchased an ecryption key then had full acce
ss to the
materials and could copy it.

If the client is concerned with someone copying the meat of the
presentation, then would it work to turn that text into a bunch of GIFs
?
This would lose the text characters, and anyone who wanted to copy it w
ould
have to send either a bunch of large image files or else retype it by
hand... you wouldn't make it impossible to copy, just would make 
it more
expensive to copy.

If you *had* to have protection, then making a unique copy of the text 
for
each user could let you trace down the custody chain of any purloined
copy... again, this wouldn't prevent misappropriation, but would 
let you
see who you should not have trusted.

Sorry, no firm leads, but does this type of info help your client..
?

jd







John Dowdell, Macromedia Tech Support, San Francisco CA US
Search technotes: http://www.macromedia.com/support/search/
Offlist email risks capture by the spam filters. I may not see your
email if it's not on the list. Private one-on-one email options are
available via Priority Access: http://www.macromedia.com/support/


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT?One of Bens Books

2002-01-29 Thread savan . thongvanh

I am contemplating getting the Allaire's Certified ColdFusion Developer
book.  I've read good things about it but it was written w/ 4.5 in mind
wasn't it?  That being said is it still a valid reference for studying for
the exam?

Thanks in advance,
Savan
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT?One of Ben's books

2002-01-29 Thread savan . thongvanh

Sorry,
nevermind i just saw the new CF5 title.

Thanks as always-
Savan
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: pdf

2002-01-29 Thread savan . thongvanh

yes,
if you have adobe acrobat, i have v4.05, you can set security options
 when
you save the pdf.

in the save dialog there is a security tab that gives you check boxes f
or

Do Not Allow
[ ]Printing
[ ]Changing the Document
[ ]Selecting Text and Graphics
[ ]Adding or Changing Annotations and Form Fields




Steven Dworman [EMAIL PROTECTED] on 01/29/2002 07:39:10 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT: pdf


Here's the deal.  A client has an extremely important pdf that they w
ant
locked down.  What this means is that they want to burn it on a cd, m
ake
the
cd copy protected, and not allow the user to save the file after it's b
een
opened.  On top of that they want to prevent the user from doing a s
elect
all copy paste.

Can this be done?  Any solution is a consideration.



Thanks,

Steven D Dworman
-
Web Consultant
Systems Administrator

ComSpec International - http://www.comspec-intnl.com
phone: 248.647.8841
cell:  734.972.9676
-
EMPOWER-XL ***Software for Higher Education***
http://www.empower-xl.com

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: I need some smart pills for my HTML text boxes...

2002-01-29 Thread savan . thongvanh

i'm trying to reproduce the prob in IE 5.5 but can't...what ver
sion are u
using?




Tyler Silcox [EMAIL PROTECTED] on 01/29/2002 08:37:30 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT: I need some smart pills for my HTML text boxes...


I'm got a problem with my input type=text name=MyTextBox
style=width: 100% form fields...
The form displays correctly if the input box is empty, but if I return
to the form for an edit, and the value=#MyOutput# is longer than th
e
textbox should be for display, it pushes out the text box past the
screen width and everything above it.  I'd like it to behave, and jus
t
go to 100% of the screen (and not past it.)  Does anyone know of any
nifty tricks to get the text within the input to display as normal,
like it does when I set the width to a certain pixel width, and just
hide behind the end of the text box?  This app is iExplorer only, so an
y
of MS crazy attributes/properties would work for me, I just can't find
any that WILL work for me on text boxes, I've checked MSDN up and
down...thanks-

Tyler
email | [EMAIL PROTECTED]


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Regex question.

2002-01-29 Thread savan . thongvanh

i'm not sure what CF's regex syntax is exactly but in other quasi-stand
ard
types i would use

/*\W*\w*2002/




Jeff Fongemie [EMAIL PROTECTED] on 01/29/2002 08:44:02 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Regex question.


Tuesday, January 29, 2002, 9:34:58 AM
Hello CF-Talk,

  I'm using the replacelist function to alter a string.

  I'm altering a weather forcast that gives this absurdly long list of
  counties before the actual forecast.

  So, I would like to do something like:

 Replace(cfhttp.fileContent, everything that comes before and
 including 2002, br)

 I'm trying all sorts of things, but nothing seems to be picking up
 the *2002 part.





Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]

__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Regex question.

2002-01-29 Thread savan . thongvanh

oops, omit the first * and slap a $ on there to terminate the string
/\w*\W*2002$/




[EMAIL PROTECTED] on 01/29/2002 08:52:16 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: Regex question.


i'm not sure what CF's regex syntax is exactly but in other quasi-stand

ard
types i would use

/*\W*\w*2002/




Jeff Fongemie [EMAIL PROTECTED] on 01/29/2002 08:44:02 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Regex question.


Tuesday, January 29, 2002, 9:34:58 AM
Hello CF-Talk,

  I'm using the replacelist function to alter a string.

  I'm altering a weather forcast that gives this absurdly long list of
  counties before the actual forecast.

  So, I would like to do something like:

 Replace(cfhttp.fileContent, everything that comes before and
 including 2002, br)

 I'm trying all sorts of things, but nothing seems to be picking up
 the *2002 part.





Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: I need some smart pills for my HTML text boxes...

2002-01-29 Thread savan . thongvanh

i tried it on 6 and saw what you're referring to.  looks like  a defa
ult
behavior.  i'd suggest you create the form field and populate it as f
ollows

cfoutput
head
script
function init(){
document.myForm.myTextField.value=#myOutPut#;
}
/script
/head
body onload=init()
form name=myForm
input type=text style=width:100% name=myTextField
/form
/body
/cfoutput


or something similar




Tyler Silcox [EMAIL PROTECTED] on 01/29/2002 09:01:05 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: OT: I need some smart pills for my HTML text boxes...



I'm using iE 6.0 ...and the input's width is 100%, so is the ta
ble that
surrounds it, and the table that surrounds that table.  It's really a
 pain
in the arse, because an image or a blank input set to 100% doesn't caus
e a
problem, just if the text inside is too long...

Tyler
email | [EMAIL PROTECTED]

- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, January 29, 2002 9:48 AM
Subject: Re: OT: I need some smart pills for my HTML text boxes...



i'm trying to reproduce the prob in IE 5.5 but can't...what ver

sion are u
using?




Tyler Silcox [EMAIL PROTECTED] on 01/29/2002 08:37:30 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT: I need some smart pills for my HTML text boxes...


I'm got a problem with my input type=text name=MyTextBox
style=width: 100% form fields...
The form displays correctly if the input box is empty, but if I return
to the form for an edit, and the value=#MyOutput# is longer than th

e
textbox should be for display, it pushes out the text box past the
screen width and everything above it.  I'd like it to behave, and jus

t
go to 100% of the screen (and not past it.)  Does anyone know of any
nifty tricks to get the text within the input to display as normal,
like it does when I set the width to a certain pixel width, and just
hide behind the end of the text box?  This app is iExplorer only, so an

y
of MS crazy attributes/properties would work for me, I just can't find
any that WILL work for me on text boxes, I've checked MSDN up and
down...thanks-

Tyler
email | [EMAIL PROTECTED]




__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Slightly OT - CF and Developers Fees

2002-01-29 Thread savan . thongvanh

wow 18 creds and 25 hours/week of admin work?  don't know how you're do
in
it but good luck.




Alex [EMAIL PROTECTED] on 01/29/2002 08:50:23 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: Slightly OT - CF and Developers Fees


If you don't like it quit. Why do you have to work at the university?



On Tue, 29 Jan 2002, Michael T. Tangorre wrote:

 Hello Everyone,

 Can I get everyones opinion on something here...
 Here at the University, student workers make no more than $6.00/hou
r
 regardless of type of work. What do you think is a fair wage for so
meone

 who learns Cold Fusion on the job and applies it at their job on a da
ily

 basis. Also, what do you think a fair wage is for someone who train
s
 staff on basic CF, SQL, and server management stuff? Right now I work

 about 25 hours a week at $6/hr and take 18 credit load semester..
. and

 am frankly working to change a few things, but I need some numbers to

 back me up so I am looking for any averages or thoughts you have.

 Thanks,

 Mike

 PS--- Sorry for the off topic post on CF-Talk.



__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL unknown exception sending to pager

2002-01-29 Thread savan . thongvanh

not a cf problem w/ the email address.  i'm doing the same thing.




Jennifer Larkin [EMAIL PROTECTED] on 01/29/2002 03:47:34 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  CFMAIL unknown exception sending to pager


I'm using CFMAIL in the same template twice. The first time it works 
but
the second time it throws this exception:
unknown exception condition
TagCFMail::sendMessage

The only thing I can thing of is that the server can't handle the recip
ient
address for some reason. Please don't send a test message to the addr
ess,
since it's my client's pager.

Here's the code:
cfmail subject=help request from=[EMAIL PROTECTED]
to=[EMAIL PROTECTED]
test
/cfmail

Is there a problem sending to addresses that have no alphabetic charact
ers
in the username or something?

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL unknown exception sending to pager

2002-01-29 Thread savan . thongvanh

may sound silly but is that really the number you want to send to?  you

need the 1?

1-916-521-5984




[EMAIL PROTECTED] on 01/29/2002 04:01:44 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: CFMAIL unknown exception sending to pager


not a cf problem w/ the email address.  i'm doing the same thing.




Jennifer Larkin [EMAIL PROTECTED] on 01/29/2002 03:47:34 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  CFMAIL unknown exception sending to pager


I'm using CFMAIL in the same template twice. The first time it works
but
the second time it throws this exception:
unknown exception condition
TagCFMail::sendMessage

The only thing I can thing of is that the server can't handle the recip

ient
address for some reason. Please don't send a test message to the addr

ess,
since it's my client's pager.

Here's the code:
cfmail subject=help request from=[EMAIL PROTECTED]
to=[EMAIL PROTECTED]
test
/cfmail

Is there a problem sending to addresses that have no alphabetic charact

ers
in the username or something?


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Best way to store credit cards in database?

2002-01-28 Thread savan . thongvanh

want easy?  encrypt it and store it in a COOKIE! LOL




Carlisle, Eric [EMAIL PROTECTED] on 01/28/2002 03:08:50
 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Best way to store credit cards in database?


First of all, kudos!!  Well spoken :)
Now here's my beef:

 ... which would she prefer? She would prefer less typing.

But are 16 characters going to make a big difference?  Sure she has to 
get
her card, but isn't she used to that when making any other purchase?

 ...he wouldn't even care. His assumption is that his informat
ion is
 well-protected and even if it gets out, he has fraud protection.

That's too bad.  Still, I can't help wondering if he didn't make sure
 to
rip up the carbons back in the day. :)


 Unless you have an extremely specialized site, you are not its target

 audience.

If I'm spending money, I am the target audience.

 EC



__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: UltraDev

2002-01-28 Thread savan . thongvanh

one line at a time using IE and NS's javascript error prompts.  one h
andy
thing that alot of ppl but not EVERYONE knows is that if you type
javascript: in the NS location box you get a console w/ javascript er
ror
output.




Billy Cravens [EMAIL PROTECTED] on 01/28/2002 02:52:42 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: UltraDev


Start - Control Panel - Add/Remove Programs - Macromedia Ultradev?  
j/k,
couldn't resist

I usually get a stiff drink, then start a random series of
CFOUTPUT's/CFABORT in UD's code view.  Things start going blurry, the
n I
realize I'm not really intoxicated, it's just a series of obscure
cfscript
and MM_ variables.

- Original Message -
From: Mark A. Kruger - CFG [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, January 28, 2002 11:07 AM
Subject: RE: UltraDev


 I'd be curious to know how you'all debug.  I've tried the de-bugger
, but
I
 always come back to hand coding debug code and testing in a browser w
hen
I'm
 doing something really complex.  Anyone?

 mark

 -Original Message-
 From: Neil Clark [mailto:[EMAIL PROTECTED]]
 Sent: Monday, January 28, 2002 6:14 AM
 To: CF-Talk
 Subject: RE: UltraDev


 table
 tr
 tdyep, i'm with ya on that./td
 /tr
 /table

 _
 _
 
 Get Your Own Dedicated Windows 2000 Server
   PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
   Instant Activation · $99/Month · Free Setup
   http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com
/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=l
ists


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT PMS

2002-01-25 Thread savan . thongvanh

can anyone give me the rgb for pantone

541U?
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT PMS

2002-01-25 Thread savan . thongvanh

thanks all!!
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: XML and IE

2002-01-24 Thread savan . thongvanh

Does anyone have a resource for loading and scripting XML documents within
IE?  I know msxml is built into IE5+ and there is a IE DOM object for it
but can't find any resources on it.

Thanks-Savan
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Cookie Blocking

2002-01-24 Thread savan . thongvanh

script
function verifyCookie(){
var hasCookie=document.cookie;
return (hasCookie)?true:false;
}
/script




Lee Surma [EMAIL PROTECTED] on 01/24/2002 08:31:14 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Cookie Blocking


Is there a good way to determine if a users browser is set to not accep
t
cookies as you are attempting to set a cookie? I want to be able to sen
d a
message to the user if blocking is on.
--


Lee Surma
Public Radio International
[EMAIL PROTECTED]
612-330-9223




__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Rendering WAP

2002-01-22 Thread savan . thongvanh

WML emulators, i KNOW that nokia has one on their site and BELIEVE moto
rola
has one too.  you might check those out.





Declan Maher [EMAIL PROTECTED] on 01/22/2002 03
:38:34
AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Rendering WAP


There was a site where it looks like you can do this. But I haven't u
sed
it. Can't remember where I got a previous emulator but there are othe
rs
out there.

The www.gelon.net WebSite allows you to view a WAP page by submitti
ng a
link to their emulator located in their server to process.
http://gelon.net/cgi-bin/wapalizeericssonr320.cgi?url=http://www.
gelon.
net/cgi-bin/wap.cgi

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: 22 January 2002 03:29
To: CF-Talk
Subject: RE: Rendering WAP


 Apologies for the OT but can anyone advise if you can render
 WAP in a normal browser.

No, normal browsers don't support WML. (WAP is the transport protocol
,
not
the language; WAP is to WML what HTTP is to HTML, to slightly
oversimplify.)

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: javascript/coldfusion--- Can you do this?

2002-01-22 Thread savan . thongvanh

i've seen this question before.  I'm wondering why it's such a big de
al to
convert a query into a javascript array...

Is it not the case that all you have to do is write the js array to the

page in your cfoutput right when you DOING the query?

thanks for the help!





Steve Oliver [EMAIL PROTECTED] on 01/21/2002 04:16:38 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: javascript/coldfusion--- Can you do this?


Look into WDDX, CFML2JS will create an array of all of your values for
you.

Something like
script
cfwddx action=cfml2js input=qryName
toplevelvariable=variablename
/script

That will result in
script
variablename = new array stuff
/script

You'll need to include wddx.js which is in your cfide/scripts folder.


__
steve oliver
cresco technologies, inc.
http://www.crescotech.com


-Original Message-
From: Metzy Martinez [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 21, 2002 4:55 PM
To: CF-Talk
Subject: javascript/coldfusion--- Can you do this?


i have an application that saves a listing entry. this entry can have

multiple number of addresses. so i have a child window that pops up.

this window then calls addresspost.cfm, this is the code you will fin
d
below, and with this page i save the address and proceed to get all of
the address that belong to the specific listing_id. once i get all of

the addresses i place them into an array. but now i'm trying to pass
that array into javascript and don't know how.

Please help SomeOne
Thank you
Metzy



cfparam name=txtListing_Id default=
cfparam name=selArea default=
cfparam name=txtStreet1 default=
cfparam name=txtStreet2 default=
cfparam name=txtCity default=
cfparam name=selState default=
cfparam name=txtZip default=
cfparam name=txtPhone default=
cfparam name=txtFax default=
cfparam name=txtEmail default=
cfparam name=txtHours default=
cfparam name=txtDescription default=
cfparam name=txtKeywords default=
cfparam name=chkActive default=off
cfoutput
cfquery name=address datasource=#dsn.listings_v2#
INSERT INTO
address
(Listing_Id, area_Id, street1, street2, city, state,
zipCode, phone, fax, email, hours, description, keywords, active)
VALUES
(#txtListing_Id#, '#selArea#', '#txtStreet1#',
'#txtStreet2#', '#txtCity#', '#selState#', '#txtZip#', '#txtPhone#',
'#txtFax#', '#txtEmail#', '#txtHours#', '#txtDescription#',
'#txtKeywords#',
'#chkActive#')
/cfquery
cfquery name=addressArray datasource=#dsn.listings_v2#
dbtype=ODBC SELECT
address_ID, street1
FROM
address
WHERE
listing_id = #txtListing_id#
/cfquery
/cfoutput
cfif addressArray.recordCount GT 0
cfset arrValue = ArrayNew(1)
cfset arrLabel = ArrayNew(1)
cfloop index=i from=1 to=#addressArray.recordcount#
cfset arrValue = AddressArray.address_id
cfset arrLabel = 'addressArra.street'
/cfloop

HTML
HEAD
META NAME=ROBOTS CONTENT=NONE
SCRIPT LANGUAGE=JavaScript
!--
function refreshProduct()
{
// Rebuilds the catalog list for the product page.
// It is built here so that it can be returned to the product page and
reloaded window.opener.modifyAddress(#arrLabel#, #arrValue#);

window.close();
}
//--

/SCRIPT

/HEAD
BODY onload=javascript: refreshProduct();
/body
/HTML
cfelse
HTML
HEAD
META NAME=ROBOTS CONTENT=NONE
SCRIPT LANGUAGE=JavaScript
!--
function refreshProduct()
{
// Rebuilds the catalog list for the product page.
// It is built here so that it can be returned to the product page and
reloaded

var arrValue;
var arrLabel;
window.opener.modifyaddress(arrLabel, 0);

window.close();

}
//--

/SCRIPT

/HEAD
BODY onload=javascript: refreshProduct();
/body
/HTML

/cfif

-
Metzy Matinez



__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT javascript

2002-01-22 Thread savan . thongvanh

how can i cap the 1st letter of every word in a sentence?
i tried using regexp inthe following matter to no avail,

 myRegex=/^[a-z]|\s[a-z]/g

mySentence=this is a sentence;

mySentence=mySentence.replace(myRegex,/[A-Z]/);

now some thing like this would've worked in perl because you can replace a
character from a correspondnig character in a set but apparently in
javascript you cannot do so.

any ideas how this can be done short of breaking the sentence at the spaces
in to an array, capitalizing and then using .join(' ') to get everything
back together?

thanks-Savan
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT javascript

2002-01-22 Thread savan . thongvanh

haha, thnx.




Bryan Stevenson [EMAIL PROTECTED] on 01/22/2002 10:43
:59 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: OT javascript


This same topic just came through 2 days ago ;-)

Go to cflig.org and grab the UDF that does just what you want

Bryan Stevenson
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
p. 250.920.8830
e. [EMAIL PROTECTED]
-
Macromedia Associate Partner
www.macromedia.com

- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, January 22, 2002 8:36 AM
Subject: OT javascript


 how can i cap the 1st letter of every word in a sentence?
 i tried using regexp inthe following matter to no avail,

  myRegex=/^[a-z]|\s[a-z]/g

 mySentence=this is a sentence;

 mySentence=mySentence.replace(myRegex,/[A-Z]/);

 now some thing like this would've worked in perl because you can repl
ace
a
 character from a correspondnig character in a set but apparently in
 javascript you cannot do so.

 any ideas how this can be done short of breaking the sentence at the
spaces
 in to an array, capitalizing and then using .join(' ') to get every
thing
 back together?

 thanks-Savan


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: well-baked cookies

2002-01-22 Thread savan . thongvanh

1-yes it is possible i am storing an array of portal settings in a cook
ie
on one of my sites and reading them back
2-possible? sure but you're not going to get very man packets into a co
okie
3-possible? yes, but naturally ur not going to get as much info in and 
in
order to use it in a query you'll have to read it back into the page an
d
submit it to another.





Mike [EMAIL PROTECTED] on 01/22/2002 10:56:12 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  well-baked cookies


I'm trying to push cfcookie's usage to the limit, by storing and readin
g
lots of user information on it.

Can someone share some thoughts on the following?

1. is it possible to store complexed variables (i.e - arrays and/or

structure) into a cookie?
is that adviseable?

2. is it possible to store XML or WDDX packets into Cookie?

3. is it possible to store encrypted values in a cfcookie, i.e:

cfcookie name=foo value=#Encrypt(foo,123)#
and then re-use the ordinary within a cfquery

SELECT from . WHERE userpassword='#Decrypt(Cookie.foo
,123)#'

does this takes noticable time and process usage? I mean - much more th
en
NOT encrypting?

-M.

__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: well-baked cookies

2002-01-22 Thread savan . thongvanh

indeed.  i forgot to qualify my statements.

i'm an intranet developer and we only use 100mbps




Cameron Childress [EMAIL PROTECTED] on 01/22/2002 11:43:36 
AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: well-baked cookies


 You should check the spec for cookies.  There are several
 limitations including:

 4k per cookie
 20 cookies per domain

Even if you get beyond these limits and manage to somehow encrypt your
large
data, you do realize that your lots of user information is going to b
e
sent across the wire with every single page request right?  Just 100K o
f
data?  Might as well plop down 100 extra K on each page.

Gonna slow you down me thinks...

-Cameron


Cameron Childress
elliptIQ Inc.
p.770.460.1035.232
f.770.460.0963
--
http://www.neighborware.com
America's Leading Community Network Software





 -Original Message-
 From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, January 22, 2002 12:08 PM
 To: CF-Talk
 Subject: Re: well-baked cookies


 You should check the spec for cookies.  There are several
 limitations including:

 4k per cookie
 20 cookies per domain

 Also, there are security risks involved with storing infomation
 on the client.  I personally think that it's best to store tracking

 information in cookies and the actual client or session data on
 the server.

 Here's the original Netscape cookie spec:

 http://home.netscape.com/newsref/std/cookie_spec.html

 More stuff inline below...

 HTH,

 --
 Howie Hamlin - inFusion Project Manager
 On-Line Data Solutions, Inc. - www.CoolFusion.com  - 631-737-46
68 x101
 inFusion Mail Server (iMS) - The Intelligent Mail Server
  Find out how iMS Stacks up to the competition:
 http://www.coolfusion.com/imssecomparison.cfm


 - Original Message -
 From: Mike [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, January 22, 2002 11:56 AM
 Subject: well-baked cookies


  I'm trying to push cfcookie's usage to the limit, by storing and
reading
  lots of user information on it.
 
  Can someone share some thoughts on the following?
 
  1. is it possible to store complexed variables (i.e - arrays an
d/or
  structure) into a cookie?

 Yes, as long as it's text.

  is that adviseable?
 

 I don't think so...

  2. is it possible to store XML or WDDX packets into Cookie?
 

 Yes - xml is only text.  However, you would need to URL encode
 the XML and you are limited to only 4k.

  3. is it possible to store encrypted values in a cfcookie, i.e:

 
  cfcookie name=foo value=#Encrypt(foo,123)#
  and then re-use the ordinary within a cfquery
 

 Yes...

  SELECT from . WHERE userpassword='#Decrypt(Cookie.
foo,123)#'
 
  does this takes noticable time and process usage? I mean - much
 more then
  NOT encrypting?
 

 I doubt that the process time is appreciable...


  -M.
 


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



custom tags @ cf-developer.net

2002-01-18 Thread savan . thongvanh

How do i get custom tags to work, fully, on this site?  I can use a custo=
m
tag within the same application but not one from the site (what should be
the customtags dir).  I first tried using cf_formurl2attributes and that
worked so i put one of my own in the same dir, a tags dir that's create=
d
for you when you get the site.  the formurl2attributes worked but my own
didn't, CF said it couldn't find the tag, BUT IT'S IN THE SAME DIR!

so i figured the site had formurl2attirbutes installed somewhere and i di=
d
not.

that being the case where do i put my tags, other than at or below the
application.cfm?

thanks-
Savan
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT? Access union query

2002-01-16 Thread savan . thongvanh

i'm having a bit of trouble w/ good sized union query.  I'ts a union of 4
queries and i was trying to use Access' Count method to count a subset of
the union query, unsuccessfully.

i think the problem is with the way i'm using access' Count() method.

I'm trying to go

Count(IIf([Col1]5,[Col1],0)

can i do that?  if that's way out of whack what's a good way to create a
subset of a union query and count the records?

Thanks-Savan
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Parent/Child windows

2002-01-15 Thread savan . thongvanh

all you have to do is be sure you're opening the child window WITH a na
me.
Then, all you have to do is, from the parent window (or any window for 
that
matter), call

_childWindowName.close();

If the window has URLs in the history it will ask the user whether they

want to close it or not, otherwise it will just close it.




clint  [EMAIL PROTECTED] on 01/15/2002 08:48:27 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT: Parent/Child windows


Does anyone know what the syntax is to control a child window from the
parent window that opened it?

Basically what I have done is built an extended session timeout warning
 and
what my boss is wanting is that if a user gets the timeout warning and 
does
not close the child window and continues to work, the child window gets

closed automatically...

I have searched and searched and cannot find the syntax to access the c
hild
window from the parent..

Any help,links,code will be appreciated.


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Using CSS to make pretty printouts

2002-01-14 Thread savan . thongvanh

if you are pulling ur content from a DB whynot just make a pretty print

template?

but to answer your question, yes, sort of.

you would only really only be able to control the visibility of the men
u
DIV if the user executed the print command from the page.  That way
, you
could capture and event, call an event handler and use it to set the D
IV
to invisible,  and from within that event handler call the print() meth
od
of the document object.

but if i were to hit [CTRL]+P that would negate that whole thing.




Carlisle, Eric [EMAIL PROTECTED] on 01/14/2002 11:43:05
 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT: Using CSS to make pretty printouts


I'm working with a web site that doesn't print well.  This happens be
cause:

1) The top navigational bar (runs horizontal - all graphical) is too wi
de
to
fit on a 8.5 inch wide paper.
2) The left navigation steals prime real estate away from the display a
rea.

I've been charged with the task of making the site print well.  Can I
 use
CSS classes to toggle the visibility of a div on a print out (so I ca
n
omit some items on a printout)?

If not, any other suggestions would be appreciated!

 Thanks :)


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT: Using CSS to make pretty printouts

2002-01-14 Thread savan . thongvanh

that's a good idea, BUT,
1. you have to maintain 2 documents whether html or css
2. how will you know which .css to link?  i'm assuming by some kind
 of user
input like clicking on Printable Version link or something to that ef
fect
3. if you DO do the Printable version thing why not just toggle the

visablity as previously mentioned since you're depending on user input 
to
go to another page, or version of the page, anyway?




Carlisle, Eric [EMAIL PROTECTED] on 01/14/2002 11:56:58
 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: OT: Using CSS to make pretty printouts


Believe me, I'd prefer to draw print friendly versions from a DB, but
much
of the site is simple HTML. :)

I see what you saying about toggling the visibility.
I was thinking of using 2 stylesheets one for display, one for print).

In
the display stylesheet, I would have that display class visible.  In
the
print stylesheet, I would have it set for invisible.  Any idea if tha
t
would
work?

 thanks :)


-Original Message-
From: [EMAIL PROTECTED] [mailto:savan.thongvanh@seabury
com]
Sent: Monday, January 14, 2002 12:50 PM
To: CF-Talk
Subject: Re: OT: Using CSS to make pretty printouts


if you are pulling ur content from a DB whynot just make a pretty print


template?

but to answer your question, yes, sort of.

you would only really only be able to control the visibility of the men

u
DIV if the user executed the print command from the page.  That way

, you
could capture and event, call an event handler and use it to set the D

IV
to invisible,  and from within that event handler call the print() meth

od
of the document object.

but if i were to hit [CTRL]+P that would negate that whole thing.




Carlisle, Eric [EMAIL PROTECTED] on 01/14/2002 11:43:05

 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT: Using CSS to make pretty printouts


I'm working with a web site that doesn't print well.  This happens be

cause:

1) The top navigational bar (runs horizontal - all graphical) is too wi

de
to
fit on a 8.5 inch wide paper.
2) The left navigation steals prime real estate away from the display a

rea.

I've been charged with the task of making the site print well.  Can I

 use
CSS classes to toggle the visibility of a div on a print out (so I ca

n
omit some items on a printout)?

If not, any other suggestions would be appreciated!

 Thanks :)




__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT - Javascript and CF

2002-01-13 Thread savan . thongvanh

i don't recall the syntax directly but there's a javascript function ca
lled

setTimeout()

that does exactly that.




Tangorre, Michael T. [EMAIL PROTECTED] on 01/12/2002 11:35:30
 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT - Javascript and CF


Hi Everyone,
This is a bit off topic, but if anyone is still up I could use some
guideance.
I have a query that returns a value in minutes. What I need to do is 
setup
a
counter that counts down
The minutes then sends a user to another page after so long...

Any ideas?

Michael T. Tangorre
==
Resident Assistant - Brick
Web Applications Developer
A.U. Webteam Slave  :-)
AIM: CrazyFlash4==


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: programming standards best practice guidelines

2002-01-11 Thread savan . thongvanh

let me preface my statement by saying, we are a BIG shop (over 4000 use
rs
inter, intra, and extranet).  As such, we use all sorts of languages 
and I
have personally been a part of standards committees.  Standards are a
 very
personal thing, and that's not a joke,  but there are just a few things
 I'd
mention to keep in mind when devising them:

1.  Don't go overboard
2.  Don't try to use the same standards for different technologies
syntactically or theoretically
3.  Every language has intricacies.
 i.e., for HTML use standards for presentation not syntax as th
e syntax
is loose but for Java dont worry about how many tabs they use in a cont
rol
structure but be sure your programmers aren't using deprecated data typ
es,
methods, etc.
4.  Leave room for your programmers to do workarounds like loosely
definining an application.cfm instead of saying you can have these an
d only
these 16 lines of code in the application.cfm of any page using the
corporate template.

my $.02





[EMAIL PROTECTED] on 01/11/2002 10:52:59 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT: programming standards  best practice guidelines


I'm attempting to compile some information for my department, and I'm
looking
for resources/websites to find information on programming standards 
guidelines for CF, HMTL, JavaScript, etc.

I'm looking for information like:
In CF, all references to shared variables should be locked.
All CF variables should be scoped
All HTML tags should be in lowercase
All pages should include a standard header that contains author, last
modified, etc

I'm not looking for use fusebox as an answer to this question.

Anyone know of anything?


Thanks,
Erica

__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Javascript Help

2002-01-10 Thread savan . thongvanh

var fiveMinutes=30;  //milliseconds in 5 minutes
var now = new Date();
var temp=now.getTime()   //temp=now in milliseconds
var newTime=new Date(eval(temp+fiveMinutes));  //newTime is now 5

minutes from now

or trimmed down

var newTime=new Date(new Date().getTime()+3).toLocaleString()
;





clint [EMAIL PROTECTED] on 01/10/2002 12:35:21 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT: Javascript Help


I know this is off topic, but it kinda isn't.

Can someone show me how to add 5 minutes to now in javascript?

I am having a hard time finding how to do this.

Thanks!


__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Password Protecting an Access ODBC connection

2001-12-21 Thread savan . thongvanh

can't you do that in the ODBC settings? assuming since ur using access
you're also using windows.

try going to
Control Panel  ODBC Datasources  User DSN  Configure  Advanced

is this a bad way to do this?




Joseph DeVore [EMAIL PROTECTED] on 12/21/2001 02:08:44 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Password Protecting an Access ODBC connection


You said, Already had that discussion, about not storing CC nums etc a
nd
encryption
but they still want to store the cc info anyway. I was asked if it wa
s
possible to setup some sort of secure connection the DB. I haven't us
ed
Access outside of simple proto-typing in a long time.

In the CF administrator when you add a datasource you can enter the
databases password but if someone had access to the registry they could
 get
that password in no time.

Also, I didn't say don't store cc's. I said if you have to store them
 at I
would at least encrypt them. Especially when it's easy. It only tak
es a few
minutes to implement encryption/decryption and can save you a heck of a
 lot
more time, money and hassle later (oh and lawsuits)..

That code I sent you in my last message works great and it would not ta
ke
more than a few minutes to implement. Maybe run that by them.

Anyhow, good luck.

- Joseph


-Original Message-
From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 21, 2001 10:46 AM
To: CF-Talk
Subject: Password Protecting an Access ODBC connection


A colleague asked if it is possible to password protect an ODBC connect
ion
to an access database, but its been so long since I've used MS Access t
hat
cant remember. Is this possible?


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT Dreamweaver, Sorry

2001-12-14 Thread savan . thongvanh

My apologies for the OT but this is one of the few places i get answers.

We recently started using Dreamweaver 4 as a standard intranet app.  I have
it loaded on a 1Ghz pentium w/256 MB RAM.  I have it mapped to a VERY large
intranet site.  the local root folder is a mapped network drive.

Now the problem,  it is taking FOR EVER to fire up dreamweaver on my pc.
when it starts it fires up @ about 8 MB of memory usage and balloons while
it's launching.  i've let it run all the way up to 35000K according to the
NT task manager.  at 35K of memory it showed no signs of stopping.  I end
up killing the PID and now i'm stuck.

how much memory does this thing need?
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT Dreamweaver, Sorry

2001-12-14 Thread savan . thongvanh

mine finally loaded, 59K+ memory.   oi.  thanks guys.




tom muck [EMAIL PROTECTED] on 12/14/2001 01:59:01 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: OT Dreamweaver, Sorry


Do you have virus protection turned on?  If so, try turning it off and
starting it up.  Virus protection will cause DW to take a long time to
load.

My copy of UltraDev typically runs about 50K of memory.

tom

[EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 My apologies for the OT but this is one of the few places i get answers.

 We recently started using Dreamweaver 4 as a standard intranet app.  I
have
 it loaded on a 1Ghz pentium w/256 MB RAM.  I have it mapped to a VERY
large
 intranet site.  the local root folder is a mapped network drive.

 Now the problem,  it is taking FOR EVER to fire up dreamweaver on my pc.
 when it starts it fires up @ about 8 MB of memory usage and balloons
while
 it's launching.  i've let it run all the way up to 35000K according to
the
 NT task manager.  at 35K of memory it showed no signs of stopping.  I end
 up killing the PID and now i'm stuck.

 how much memory does this thing need?



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: FTP

2001-11-29 Thread savan . thongvanh

Does anyone know how to get (recursively) all the files in a dir using ftp?
when i do

mget *

it gets all the files in the current dir but no the subdirs.

any help would be greatly appreciated.

Thanks,
Savan
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: 10 Step Program

2001-11-29 Thread savan . thongvanh

i try to handle mine using cookies and timeouts.  how does that hinder the
use of cflocation?





Won Lee [EMAIL PROTECTED] on 11/29/2001 11:18:55 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  10 Step Program


Hi my name is Won Lee and I'm addicted to session variables.

In an attempt to rid myself of all locking, I'm trying to stay away from
application and session variables.
One of the most common things is used for session variables is
session.userID.
How does one now emulate this functionality without using session
variables.
I thought about just using cookies, but that would hinder use of
cflocation.
Any ideas?

How do HTML websites handle session states?

=
Not being a materialist in the U.S. is kind of like not appreciating opera
if you live in Milan or art if you live in Paris. We support materialism
better than any other culture. Because retailing and distribution are so
efficient here, stuff is cheaper than anywhere else in the world. And then
we have huge houses in which to archive our stuff.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: 10 Step Program

2001-11-29 Thread savan . thongvanh

i've never had that problem, probably because i've never tried to do that.
i was a javascript junkie well before i got into CF so i set and get all my
cookies with javascript.  the only hassle with that is that you have to
resubmit all your variables to every action page and even so it's not that
big a deal to me.





Won Lee [EMAIL PROTECTED] on 11/29/2001 11:38:30 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: 10 Step Program


Hmm client vars.  Why didn't I think about that.
I don't want to keep using form variables.  Currently I use a lot of URL
variables.
I'll test it out and see how the fast client variables run.

PS you can't use cfcookie and cflocation on the same page.
I use cfmodule a lot and manyof them have a cflocation in them.  Perhaps
this is a design flaw, but I have to live with it.





~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Credit Card Encryption

2001-11-29 Thread savan . thongvanh

[beating dead horse]i think, and i think some others would agree, the best
way to do it if you have to at all is to store the ENCRYPTED number in a
table and after that your data is only as good as the security you carryout
on your decryption method (com object or otherwise).





[EMAIL PROTECTED] (C. Hatton Humphrey) on 11/29/2001 11:43:16 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Credit Card Encryption


Does anyone have any insight on encrypting data into a Table?  A client is
asking about storing CC numbers and I want to see what level of protection
we can provide.

TIA!

Hatton

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Touch Screen Question!!

2001-11-29 Thread savan . thongvanh

haha, fat finger literally.




Jerry Johnson [EMAIL PROTECTED] on 11/29/2001 02:57:11 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: Touch Screen Question!!


Touch screens, for the most part, are very simple.

The touch screen works just like a mouse (replaces/enhances the mouse
driver).

Although it depends on how the driver is set up, the normal mode is that
when an object touches the screen, it is the same as a single  mouse click
at that location. If there is an anchor object under that location, you
just clicked it.

The main difference is button size and seperation of touch areas (for fat
fingered individuals), and handling things like drag-and-drop and scroll
areas (and keyboard-like input when neccessary)

Jerry Johnson




 [EMAIL PROTECTED] 11/29/01 03:38PM 
hey guys, i'm developing a CF site, but they want it to be touch screen.

can anyone give me some insight on how touch screen works and what not?

thanx.




~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: THE LATE GREAT FUSEBOX DEBATE

2001-11-20 Thread savan . thongvanh

I almost hate to reply to this thread but i gotta throw in my two cents.

we all know that fuse box is the attempt to OOP-ize CF so why not just look
at it the same way as any other OOP language.  it can be powerful if you
have full command of the language and cumbersome if not by adding undue
complexity where an experienced programmer would use a more direct and
efficient built in feature i.e., proper use of includes, custom tags, cfx,
and what not.

so i ask myself when defining a project, why use OOP libraries for
something u could do with a scriptlet?  if it's big enuff and you need
fusebox, use it because it CAN be abbreviated and massaged to your liking.
if not, take it easy on yourself and bill like ur using it  :P




Joseph Thompson [EMAIL PROTECTED] on 11/19/2001 03:41:36 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: THE LATE GREAT FUSEBOX DEBATE


Last week in Vancouver he specifically ducked backing any one methodology
although he did say
a) you should use one
b)A methodology is no good if it requires that you re learn everything
you
know

Being a big fan of the rollover form (and hating the
form--action--display approach) I found Fusebox a real joy.  I didn't
have
to relearn anything as I always wrote my forms assuming there would be
default values.  Now i just CFPARAM my values to the Attributes scope.
That
file, and the query files live seperate so when someone decides to mod
the
dbase you just need to mod those two files.

.
 I am really curious about Ben Forta's opinion of Fusebox?  Has anyone
 been able to corner him into saying anything one way or the other?



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 4.6

2001-11-20 Thread savan . thongvanh

all i've got to say, wow.

why does IE get spanked so bad in a parallel comparison on this pge?




Jared Clinton [EMAIL PROTECTED] on 11/19/2001 11:32:43 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Netscape 4.6


Not in all situations,

check this javascript graph in IE http://tavernini.com/lorenz.html  (too
sloow)

and then in netscape and see which one you prefer.

Jared Clinton.

-Original Message-
From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 20 November 2001 2:23 PM
To: CF-Talk
Subject: Netscape 4.6


I just wanted to vent for a minute:
Netscape 4.6 is a pile of dunk.

Gnite.


Michael T. Tangorre


Resident Assistant - Brick
Web Applications Developer
A.U. Webteam Slave  :-)
AIM: CrazyFlash4


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Dreamweaver

2001-11-20 Thread savan . thongvanh

anyone know of a way to use DW4 to locate orphan files on a site?
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Cannot convert to number

2001-11-19 Thread savan . thongvanh

are there any limitations or exceptions to nesting #var#'s?





Angel Stewart [EMAIL PROTECTED] on 11/19/2001 02:29:31 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Cannot convert to number


OMG.

I feel like its all coming apart now.

Got hit with another error , on another screen.


-

An error occurred while evaluating the expression:


 SUM_#Evaluate(#attributes.attcode#)# = SUM_#attributes.attcode# +
#GetVacationDetails.RegHrs#


Error near line 106, column 9.



Cannot convert SUM_8000 to number.

Please, check the ColdFusion manual for the allowed conversions between
data types


-

This is the line of code throwing the error:

CFSET SUM_#Evaluate(#attributes.attcode#)# =
#Evaluate(SUM_#Evaluate(#attributes.attcode#)#)# +
#GetVacationDetails.RegHrs#

It worked fine once..and...now it's not..and...it all doesn't make
sense.
*falls over*
Gods.

-Gel

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT:java and access

2001-11-15 Thread savan . thongvanh

what data type do i use to retrieve an auto number field from access with
java?

i.e.
myResultSet.[getString(), getInt(), getLong, ...]

anyone know?
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Managing DNS via a browser

2001-11-01 Thread savan . thongvanh

am i missing something here?

if you are using win 2k why aren't you using the terminal service web
client?  it's an active-x control that lets you run a terminal service
session thu your browser.  you cant do whatever you want from a browser.

do a search in windows or @ MS for tsweb

is there more to this issue?




Eric Dawson [EMAIL PROTECTED] on 11/01/2001 10:18:02 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: OT: Managing DNS via a browser


I want this too!

I think it might not be that tough ... the DNS records are jst in text
files
right?

Eric Dawson



From: Clint Tredway [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: Re: OT: Managing DNS via a browser
Date: Thu,  1 Nov 2001 10:32:33 -0500

Ok, I need to rephrase my question. Is there a tool that will allow me to
manage my own DNS through a browser?

I am running Win2k and I am using MS DNS.

Thanks!

-- Original Message --
from: Critz [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
date: Thu, 1 Nov 2001 10:29:56 -0500

oi Clint!!

well  if  you  register  with  dotster.com  you  can.or  you can use
the
free one
zoneedit.com


--
Critter, MMCP
Certified ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion


-
Thursday, November 01, 2001, 10:08:03 AM, you wrote:

CT Does anyone know of a current solution cf based or not, that will allow
you to manage DNS records via a browser?

CT Thanks in advance!

CT



~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Managing DNS via a browser

2001-11-01 Thread savan . thongvanh

sorry,
should said you CAN do whatever you want from the browser.




[EMAIL PROTECTED] on 11/01/2001 10:25:49 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: OT: Managing DNS via a browser


am i missing something here?

if you are using win 2k why aren't you using the terminal service web
client?  it's an active-x control that lets you run a terminal service
session thu your browser.  you cant do whatever you want from a browser.

do a search in windows or @ MS for tsweb

is there more to this issue?




Eric Dawson [EMAIL PROTECTED] on 11/01/2001 10:18:02 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re: OT: Managing DNS via a browser


I want this too!

I think it might not be that tough ... the DNS records are jst in text
files
right?

Eric Dawson



From: Clint Tredway [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: Re: OT: Managing DNS via a browser
Date: Thu,  1 Nov 2001 10:32:33 -0500

Ok, I need to rephrase my question. Is there a tool that will allow me to
manage my own DNS through a browser?

I am running Win2k and I am using MS DNS.

Thanks!

-- Original Message --
from: Critz [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
date: Thu, 1 Nov 2001 10:29:56 -0500

oi Clint!!

well  if  you  register  with  dotster.com  you  can.or  you can use
the
free one
zoneedit.com


--
Critter, MMCP
Certified ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion


-
Thursday, November 01, 2001, 10:08:03 AM, you wrote:

CT Does anyone know of a current solution cf based or not, that will allow
you to manage DNS records via a browser?

CT Thanks in advance!

CT




~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: Windows 2000 fatal shutdown?

2001-10-31 Thread savan . thongvanh

lots of services logging, and not native services.  the 18GB scsi HDD
shouldn't be a problem.  sounds like you have some services conflicting.
i'd try suspending some of the more heavily used services and reactivating
them one at a time.  how much memory?

MCSE 2000,MCP Exchange 2000, and officia company guru.




BILLY CRAVENS [EMAIL PROTECTED] on 10/31/2001 03:28:04 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT: Windows 2000 fatal shutdown?


Sorry for the off-topic post, but I know that there's more than a handful
of
gurus on the list, so I thought I'd throw this one at you.

I have a Windows 2000 server, up to date on service packs/patches, running
CF5 Pro (updated), SQL Server 2000, IIS of course, and Post.Office mail
server (eventually I'll break things out into separate boxes).

My problem is that the box runs for a while, then shuts down - and doesn't
recover.  Usually I receive a hard drive error when rebooting.  (The
harddrive is an 18GB SCSI IBM - 29180 Adaptec card) If I do a restart
(sometimes multiple), it will come back up, until it goes down again.  I've
seen what happens once (this is a co-lo'ed box) - I don't have the exact
text of the error message, but it's something about a services.exe crash,
with an error code of 128.  The box then shuts down 30 seconds later.

I've replaced the mobo, cpu, harddrive, and put additional cooling on the
hard drive, and still no luck.  Any ideas?  I'm going crazy with this box!

Thanks in advance,

Billy Cravens



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OSX CF Port?

2001-10-04 Thread savan . thongvanh

I suppose you believe webstar is the most secure web server too



*
Here, Here! Please port CF Studio and Server to the MAC OS ... much more
stable environment.
**


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT-Getting time

2001-09-21 Thread savan . thongvanh

How can i check the time on a remote box?
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT-Getting time,sorry

2001-09-21 Thread savan . thongvanh

sorry, should've dug more.  just telneted to smtp and took the time from
there.




[EMAIL PROTECTED] on 09/21/2001 12:53:41 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  OT-Getting time


How can i check the time on a remote box?

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Dreamweaver FTP

2001-09-14 Thread savan . thongvanh

has anyone had problems with the dreamweaver FTP client?

if I open a file from the web server it makes a copy locally and i edit it.
OK? OK.  when i go to send it back up ftp says permission denied.  BUT, if
i GET the file first, edit it, THEN send it u it's ok.

anyone seen this before?

Thanks-Savan
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dreamweaver FTP

2001-09-14 Thread savan . thongvanh

no, it's terribly annoying.  it's trying to do a STOR filename and
bombing out with a 553 ftp error, supposedly action aborted, invalid
filename.  But, when I try the SAME command in another FTP client it goes
just fine...




Thomas Chiverton [EMAIL PROTECTED] on 09/14/2001 08:53:23 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Dreamweaver FTP


Are you using check in/out ?

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: 14 September 2001 14:25
 To: CF-Talk
 Subject: OT: Dreamweaver FTP


 has anyone had problems with the dreamweaver FTP client?

 if I open a file from the web server it makes a copy locally
 and i edit it.
 OK? OK.  when i go to send it back up ftp says permission
 denied.  BUT, if
 i GET the file first, edit it, THEN send it u it's ok.

 anyone seen this before?

 Thanks-Savan


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFUPDATE vs. UPDATE

2001-09-13 Thread savan . thongvanh

sorry no numbers but I seem to find that UPDATE works a HAIR faster.
virtually the same though especially for simple queries (which seem to be
most).

just a personal preference but I try alway to use SQL.  why use CF[sql
here] when you can use the real deal...?




Koo Pai Lao [EMAIL PROTECTED] on 09/12/2001 05:24:25 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  CFUPDATE vs. UPDATE


which is faster or why should i use one over the other?
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re:OT - Software allocation of RAM

2001-09-13 Thread savan . thongvanh

NT is excepted.

Win9x is limited in the amount of RAM it can allocate, anything more than
128 is junk..

Win2k Server/Advanced Server/Datacenter can scale up to gigs and gigs of
RAM and as you said, with better garbage collection than previous versions.
I think the lowest one is 2 Gig for W2k Server.

MCSE Win 2k




[EMAIL PROTECTED] (Carol Bluestein) on 09/13/2001 09:13:41
AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Re:OT - Software allocation of RAM


You are not alone.

I'm not an expert here and I'm sure you are going to get plenty of expert
help.
However, I will say that anything less that windows2000 (and I don't know
if
NT is excepted here) allocates only 125 of RAM ( or some such low number)
no matter how much RAM you have installed.  Win2000 handles RAM much
better and you don't keep getting the low resources message.

I ran into the same trouble and just kept unnecessary applications or
resources
closed.  Allaire has this information in its knowledgebase, I believe,
because
they are the ones that explained it.

Carol

Carol L. Bluestein
Senior Programmer
NYS Office of Real Property
518-486-6335
[EMAIL PROTECTED]


Reply Separator
Subject:OT - Software allocation of RAM
Author: [EMAIL PROTECTED]
Date:   9/12/01 3:34 PM

General question here -

I'm going to assume windows allocates certain percentages of memory (RAM)
  to specific software programs, is there a way to change this?  The
  reason Im asking is I frequently run out of memory (RAM) and get odd
  error messages from programs saying not enough memory.  Well, I have
  recently upgraded my work PC to 1/2 GIG of RAM from 256, but still
  get these screwy messages.  I admit I do have a lot of applications
  open on my workstation but I would think I would run out of 1/2 GIG
  of RAM that easily. I am running a P3 667 w/ 500 MEG RAM.

Applications running when error messages occur:

IE 5.5, MS Access 97', windows explorer, Lotus Notes, SQL query analyzer,
  SQL Enterprise Manager, AOL instant messenger. (I would not think
  this would be enough to yield memory errors, but as soon as I shut
  one down all is well.)



Thanks,

Casey Cook
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFUPDATE vs. UPDATE

2001-09-13 Thread savan . thongvanh

uh huh  :)




Billy Cravens [EMAIL PROTECTED] on 09/13/2001 10:11:28 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: CFUPDATE vs. UPDATE


I'm not sure about performance issues, but from a logic standpoint, I'd
recommend always using a full UPDATE statement.  For a straight
modification of data from a simple form, CFUPDATE seems adequate.

However, this limits what you can do:
- limited server-side validation
- limited to one table

Some disadvantages:
- forces your form to expose information about your database

I acknowledge that CF is all about saving time, and CFSQL tags tend to
be faster (to code) than raw SQL.  However, the biggest problem I see is
that developers use them as a crutch - you find yourself trying to shape
your logic so that CFUpdate will work - which you should never do.  Your
logic drives your code, not the other way around.

---
Billy Cravens
Web Development, EDS
[EMAIL PROTECTED]


-Original Message-
From: Koo Pai Lao [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 12, 2001 5:24 PM
To: CF-Talk
Subject: CFUPDATE vs. UPDATE


which is faster or why should i use one over the other?
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Complicated mail/DB problem

2001-09-11 Thread savan . thongvanh

why couldn't you just read SELECT all the emails that have not been sent
for that user , elegantly concatenate the bodies, and just let it rip?




W Luke [EMAIL PROTECTED] on 09/11/2001 11:58:59 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Complicated mail/DB problem


Hi.

Before I ask my question, I'd like to offer my sincerest condolences to
America, to the lost and anyone else affected by today's unbelievable
events.  I was fortunate, or unfortunate enough to watch it live on TV -
how
lucky I/we are that we can be so detached from such devastation.  God's
speed to all.




I have a complicated mail and DB question.  On one of my sites, there are a
fair amount of Email Notification things going on with CFMail.  For
instance, a user might asked to be notified of 3 or 4 things and will
receive 4 seperate emails as and when an even occurs.  What I want to do is
instead of triggering cfmail each time, and sending hundreds of emails,
insert the data into the Database and run CFSchedule periodically to send
the emails.

So let's say cfschedule runs a script every 30 minutes.  The script finds
50
records, 30 of which are distinct email addresses - cfmail sends them all
out, and a MailSent Yes/No field is set to Yes.  The other 20
records/emails are destined for 5 people - 4 emails each.  What I need to
do
is loop through them, checking the mailtype field, collating *one* email
for each 5 people.

Let's say [EMAIL PROTECTED] has 4 emails in the Database that are about to be
sent.  One contains information on the number of hits his banner has had
today; the 2nd informs him of updated info in the news section.  The 3rd
details an Advert he has that is expiring in a days time, and the 4th shows
site-stats.  Each of these emails or records in the DB will have a unique
MailType field.  What I'd then need to do is create one email to send
to
[EMAIL PROTECTED] but which contains all 4 records.

Can anyone advise how I'd go about this?  Currently my Table in the DB
(called MailSpool) is as follows:

mailID
mailTo
mailFrom
mailSubject
mailBody
mailSent (YesNo)
mailDate (Time/date field)
mailType

Any advice or tips would be appreciated.

Will
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



complicated mail problem

2001-09-11 Thread savan . thongvanh

sorry i got delete happy and removed your last question.

all i remember was...how do i differentiate[rest of message lost in
space]?

sorry.
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Terrorism

2001-09-11 Thread savan . thongvanh

i feel, as we all do, about todays happenings and wanted to keep quite but
have to ask...,

what is that supposed to mean?




Neil Clark [EMAIL PROTECTED] on 09/11/2001 01:24:18 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  RE: Terrorism


 I think God was one of the main reasons why things like this happen
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Disabling back button

2001-09-07 Thread savan . thongvanh

check the archives.  there has been extensive discussion on this and i
believe a solution.  :)




W Luke [EMAIL PROTECTED] on 09/05/2001 02:51:08 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Disabling back button


Is there a possible and simple way to do this - or is it a nightmare to do?

Will
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Small JS Question

2001-08-30 Thread savan . thongvanh


try resetting the form onload of the page (body)




Kevin Mansel [EMAIL PROTECTED] on 08/30/2001 12:20:40 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Small JS Question


Ok, I have a form, I submit the form, the values are passed.  And then I do
some inserting into my DB.  Now, if a user clicks back, I want the form to
be reset.  I've tried appending myForm.reset(); to my validation scripts,
but when I submit it, no values are passed through, obviously because of
the
form reset method i'm invoking at the end.  However when I do the form
reset
method, when the user clicks back, the form is at the default state, so i'm
getting the results, but not the way i need them, i need them to work
together, anyone have any insight on this one?

Thanks,

kev

~
Kevin Mansel
Senior Web Developer
Fox Communications
[EMAIL PROTECTED]
DL : 425-649-1321
C : 425-346-7221
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Select

2001-08-28 Thread savan . thongvanh


you would have to use a javascript function on submit to check for a value
in the select.




Rich Tretola [EMAIL PROTECTED] on 08/28/2001 02:02:46 PM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk [EMAIL PROTECTED]
cc:

Subject:  Select


Does anyone have a way to require a selection of a regular select tag?  I
know that cfselect will do this but I can't use cfselect.

Thanks,
Rich
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Could someone check this with non-IE5.5 ?

2001-08-21 Thread savan . thongvanh


sorry what's that url?


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   >