How to determine client encryption level

2000-05-24 Thread CGaddy
Is there any way with ColdFusion to determine a client browser's encrytpion level (to redirect them if they don't have at least 128-bit, for example)? I want to avoid CF_BrowserHawk...anybody know of another way? Thanks, Charlie

RE: Navbar icons

2000-03-30 Thread CGaddy
Create an icon file (*.ico) and upload it to the root directory of the Web server. Name the file favicon.ico, and IE will handle it from there. Doesn't work for NN. -Original Message- From: John N Westerlund [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 30, 2000 11:45 AM To: [EMAIL

RE: CF Based Real Estate App

2000-03-27 Thread CGaddy
I've done one for the local MLS here (http://www.carolinahome.com). I don't think there are any prepackaged apps for this, it's a DIY. Charlie -Original Message- From: cf kaizen [mailto:[EMAIL PROTECTED]] Sent: Monday, March 27, 2000 11:39 AM To: [EMAIL PROTECTED] Subject: CF Based Real

RE: Ordering a list

2000-03-27 Thread CGaddy
Convert the list to an array, sort it, then convert it back to a list. The sort order in the arraySort function allows you to sort the array either numerically or alphebetically with or without case-sensitivity. cfscript // Convert list to array to sort myArray = listToArray(variables.lst_toDo,