RE: Change FileName from Download.cfm to Download.csv

2002-05-15 Thread Ledwith, Brian
I dont remember where I got this list, and it's certainly not a complete list of MIME types, but here are some: ai = application/postscript aif = audio/aiff aiff = audio/aiff ani = application/x-navi-animation au = audio/basic avi = video/x-msvideo bin = application/x-macbinary bmp = image/bmp

RE: Computer Professionals / Cold Fusion Programmer

2002-05-14 Thread Ledwith, Brian
A quick search on google for the quote Sam had turned up with: www.torrancechamber.com/2002laws.htm and www.careerzone.torrnet.com/Employers/contbus.htm Interestingly, on the California Chamber of Commerce website... http://www.calchamber.com//helpline/computer_professionals_exempt.html ~bgl

RE: Change FileName from Download.cfm to Download.csv

2002-05-14 Thread Ledwith, Brian
Try this, using the filename and it's location: cfset variables.FileName=TodaysStats.csv cfset variables.PathAndFileName=C:\Download\TodaysStats.csv CFHEADER NAME=Content-Disposition value=attachment; filename=#variables.FileName# cfcontent type=application/vnd.ms-excel

RE: Window resize

2002-04-18 Thread Ledwith, Brian
body onload=javascript:window.resizeTo(width,height); -- Brian Ledwith Stupefying...prodigious...asinine... --Mac Wellman Learning Express, LLC. www.learnatest.com / www.learningexpressonline.com 900 Broadway NY NY office:

RE: Make last line of query available

2002-04-15 Thread Ledwith, Brian
Treat it as a structure. revquery.rev[revquery.recordcount] should do it ~bgl -- Brian Ledwith Stupefying...prodigious...asinine... --Mac Wellman Learning Express, LLC. www.learnatest.com / www.learningexpressonline.com 900 Broadway NY

RE: Make last line of query available

2002-04-15 Thread Ledwith, Brian
NY NY office:212.995.2566 x150 facsimile: 212.995.5512 mobile:917.957.9166 -- -Original Message- From: Ledwith, Brian [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 5:40 PM To: CF-Talk Subject: RE: Make last line

RE: Slightly OT: Frame Frustration

2002-01-24 Thread Ledwith, Brian
Jim, Thanks for the reply, but unfortunately I cant utilize your suggestion. Partially due to how the framed pages are heavy with javascript executed forms, and how I cflocate here and there. There actually isn't an anchor tag anywhere that the user can click on to bail out of the framed

Slightly OT: Frame Frustration

2002-01-23 Thread Ledwith, Brian
Evening all, 2/3 of my site is non-frames, and each page executes the following JS above to break out of frames: !-- function FrameKill() { if (self.parent.frames.length != 0) self.parent.location=document.location; } -- The rest of the site is in the following frameset. (js not executed on

RE: Cue Cat

2001-10-05 Thread Ledwith, Brian
Check out these two emails sent in August: - Original Message - From: Rick Osborne [Mojo] [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, August 21, 2001 6:09 PM Subject: RE: Bar Code Scan Back when CueCats were all the rage, I wrote a CF app that would take the

RE: Which OS to use? Win98 or WinME?

2001-07-13 Thread Ledwith, Brian
Dell sent me a laptop with NT4 preinstalled, on a FAT32 formatted drive, making it blatantly obvious that manufacturers don't necessarily even boot a computer before they ship it, so I'm not sure if I'd point the finger at Compaq for the botched ME install on your Presario. I recently bought a

RE: Which OS to use? Win98 or WinME?

2001-07-13 Thread Ledwith, Brian
win2k as my development platform - windoze 9*/ME just don't cut the mustard! BSODs are very rare sights when one uses Win2k. ME/9* are not designed to be robust development OSs - they are for playing games! Stephen -Original Message- From: Ledwith, Brian [mailto:[EMAIL PROTECTED]] Sent: 13

RE: Which OS to use? Win98 or WinME? (correction)

2001-07-13 Thread Ledwith, Brian
? -Original Message- From: Ledwith, Brian [mailto:[EMAIL PROTECTED]] Sent: Friday, July 13, 2001 9:10 AM To: CF-Talk Subject: RE: Which OS to use? Win98 or WinME? Dell sent me a laptop with NT4 preinstalled, on a FAT32 formatted drive, making it blatantly obvious that manufacturers don't

RE: Client Variables NOT expiring

2001-07-11 Thread Ledwith, Brian
Stephen- To kill a users session, and clean everything up, I have a logout page with the following: cfset client.userid = 0 cfset client.parentid = 0 cfset client.useridtypes = cfset DeleteClientVariable(E_ID) cfset DeleteClientVariable(D_ID) cfset DeleteClientVariable(S_ID) cfset

(reposts) cluster cats confusing client sessions? and Cookie s Sessions Proxies - Oh my!

2001-05-04 Thread Ledwith, Brian
G'morning, all, I'm having some difficulties, and searching through the archive brought up 2 previous posts. I couldn't find any replies to the original posts, and rather than retype the entire scenario, I'm going to butcher them a bit to combine the two, as they seem to be very similar to my

RE: Previous date

2001-03-21 Thread Ledwith, Brian
Shally, Use: dateformat(NOW()-1,"MM/DD/YY") ~bgl -Original Message- From: monika kon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 21, 2001 11:03 AM To: CF-Talk Subject: Previous date Hi ! Can any one please tell me how can I display the previous date. For example if today is

RE: encryption of form url variables

2001-03-16 Thread Ledwith, Brian
Nagesh, Just yesterday I used the following: On source page: cfscript str = '#trim(QueryName.Password)#'; key = 'YourKeyHere'; encStr = urlencodedformat(encrypt(str,key)); /cfscript cflocation url="LoginReminder.cfm?Password=#encStr#" On LoginReminder.cfm cfscript