Re: Wierd CFLOCATION error

2000-10-13 Thread Jason Stiefel
Paul- You cannot use cfcookie in the same template as cflocation .. - Original Message - From: "Paul Johnston" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 13, 2000 12:41 PM Subject: Wierd CFLOCATION error An email is sent out with a url on it. THe url

Re: dynamically filling a calendar

2000-10-06 Thread Jason Stiefel
colander code? Are we cooking here? ;-) - Original Message - From: "Kevin Queen" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 06, 2000 10:38 AM Subject: RE: dynamically filling a calendar Oo, me too, pleassse :) Could you include me in on

Re: OK, Here is the code

2000-10-06 Thread Jason Stiefel
I wrote a tag sometime last year that does this for you. Search for instaCalendar on the dev gallery... - Original Message - From: "Jeremy Allen" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 06, 2000 12:44 PM Subject: RE: OK, Here is the code It looks like

ColdFusion/Spectra Oppurtunity in Boston, MA

2000-10-05 Thread Jason Stiefel
Anyone interested in some challenging work in historic Beacon Hill, Boston? Here's a chance to make a considerable contribution to the content managed portal presences of this very unique healthcare industry pre-IPO company. The primary technologies are: Windows NT - IIS 5.0 - ColdFusion 4.5.1 -

Re: Random Record

2000-10-05 Thread Jason Stiefel
kev- cfquery name="myquery" selectmyfields frommytable /cfquery !--- (i.e. select all the records. this wouldn't be recommended in a really large table!) file://--- cfset intRecord = RandRange(1,myquery.RecordCount) cfoutput#myQuery[intRecord].field#/cfoutput You can treat

Re: Random Record

2000-10-05 Thread Jason Stiefel
ecordCount)].key cfquery name="qGetRandomRecord" select* fromtable wherekey = '#randomKey#' /cfquery Which would be infinitely faster if you're dealing with large text fields or something. Have fun! ;-) - Original Message - From: "Jason Stiefel"