RE: Strange Coldfusion url quirk.

2001-05-03 Thread Jason Aden
I think it's the http:// thing. I just tested it, and clicking on a link with just http:/ gives the error. If I go to the Address bar though and hit Enter, IE addes the second slash for me and goes to the page. hth, Jason Jason Aden Director of Quality and Standards Allaire Certified

RE: IE 6 (whistler)

2001-05-03 Thread Jason Aden
No, Whistler (or XP or 2002) is built on the 2000 code, which was built on the NT code. It's MUCH more stable than any of the 9x versions. Jason Aden Director of Quality and Standards Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Jeffry

RE: Finding the last item in a loop

2001-05-03 Thread Jason Aden
You could use the query recordCount and currentRow variables. Something like: cfif qry_show_event_sponsers.recordCount NEQ qry_show_event_sponsers.currentRow , /cfif hth, Jason Jason Aden Director of Quality and Standards Allaire Certified Developer [EMAIL PROTECTED

RE: elseif in cfscript?

2001-03-22 Thread Jason Aden
) { code... } else { if (thisIsTrue2) { code... } } /cfscript HTH, Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Jamie Jackson [mailto

RE: email addresses

2001-03-15 Thread Jason Aden
Try using single quotes: INSERT INTO tableName (name,email) VALUE ('joe','[EMAIL PROTECTED]') SQL doesn't like double quotes. Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Savan Thongvanh [mailto:[EMAIL PROTECTED

RE: Custom Tag

2001-03-14 Thread Jason Aden
y /cfquery cf_MyTag query="#xxx#" And then access the query within the custom tag as: cfloop query="attributes.xxx" actions... /cfloop HTH, Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Scott,

RE: Form Fields cleared on Back

2001-03-13 Thread Jason Aden
What type of inputs are they? I know that IE will clear password fields when you hit the browser back button. Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Adrian Cesana [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March

RE: Replacement for Replace

2001-03-10 Thread Jason Aden
is a lot faster than having CF do it in a list. HTH, Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 10, 2001 3:39 PM To: CF-Talk Subject: Replacement for Re

RE: How to fast big query result on browser

2001-03-09 Thread Jason Aden
in one box. Have them enter the category, or maybe some sort of alphabetical search, but do something that will narrow down the query results. IMHO, you would never want to have more than 500 options in a select box (as an absolute limit). Jason Jason Aden Allaire Certified Developer [EMAIL

RE: Custom tags

2001-03-06 Thread Jason Aden
, Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Parker, Kevin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 06, 2001 9:57 PM To: CF-Talk Subject: Custom tags Do custom tags have to be stored under the custom tags

RE: CFAS 4.5.1 Session Vars

2001-02-06 Thread Jason Aden
Was session.rollCount defined when you run the template and get an error? Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 10:58 AM To: CF-Talk Subject

RE: RE: Request Scope

2001-02-02 Thread Jason Aden
in in the shared scope. HTH, Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Carol Bluestein [mailto:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 10:25 AM To: CF-Talk Subject: Re:RE: Request Scope Is any one out

RE: CF/Spectra Question

2001-02-02 Thread Jason Aden
to other Spectra applications. Anyway, the gist is that you need to have both CF Enterprise and Spectra on the machine to run a Spectra site. Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: W. Hubbard [mailto:[EMAIL PROTECTED

RE: RE: RE: Request Scope

2001-02-02 Thread Jason Aden
o an array in the application scope --- #request.app.aApplicationIDs[2]# /cfoutput OR: !--- Set session and application variables into local scope --- cfset currApp = request.app.aApplicationIDs[2] cfset timeout = request.ses.sessionTimeout etc. HTH, Jason ---- Jason Aden Allaire

RE: Brain Fart

2001-02-02 Thread Jason Aden
cfif len(form.specialRequest) GT 255 Too many characters!!! /cfif Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 2:03 PM To: CF-Talk Subject: OT

RE: cached queries vs. structures was(Re: ...BETA...!! (query a query))

2001-02-02 Thread Jason Aden
To follow this up, queries and structures are both implemented as arrays in CF, so the performance difference should be negligible. Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Cameron Childress [mailto:[EMAIL

RE: The CF Mail Server

2001-02-01 Thread Jason Aden
got some more available processor power you could send out many more in each batch. HTH, Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 6:10 PM

RE: Detecting HTTP_USER_AGENT

2001-02-01 Thread Jason Aden
Case(cgi.http_user_agent,"MSIE") cflocation url="IE URL" cfelse cflocation url="Other URL" /cfif HTH, Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Richard L Smith [mailto:[EMAIL PRO

RE: Detecting HTTP_USER_AGENT

2001-02-01 Thread Jason Aden
Why don't you need the CGI scope? If you don't specify it CF will have to search through a number of scopes to find it. Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: The BETA IS OUT!!!

2001-02-01 Thread Jason Aden
I read the release notes and didn't see anything about custom functions. Does anyone know if this has been included in beta 1? Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent

RE: The BETA IS OUT!!!

2001-02-01 Thread Jason Aden
Hmm... I just downloaded it about an hour ago. When I go to the beta site now I get the "No Beta Software" message too. They must have made a mistake and opened it up early temporarily. Jason ---- Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Origin

RE: Certification Help

2001-02-01 Thread Jason Aden
was weak in or hadn't used for a long time. I did it in about 10 minutes before going in for the exam, and I think it helped me to get a higher score. HTH, Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Richard Banks

RE: Is the beta free???

2001-02-01 Thread Jason Aden
Yes, you have to be on "the list" though. :) If you don't have access to the http://beta.allaire.com site, just email them at mailto:[EMAIL PROTECTED] and ask for access. Make sure to tell them what you want access to (CF, Spectra, JRun, etc.). Jason ---- Jason Aden Allaire Certified

RE: bug in duplicate() function crashes server

2001-02-01 Thread Jason Aden
it). Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: Brad Howerter [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 2:51 PM To: CF-Talk Subject: bug in duplicate() function crashes server I've come up with some

RE: Problems with Dynamic Form.variables

2001-01-30 Thread Jason Aden
T COUNT (*) WHERE qID = 5 AND answer = '#form.5#' /cfquery cfif tryAns.recordCount User got it right! /cfif I'm not sure if I understood the question correctly, but there's a guess at an answer for you. Jason Jason Aden Allaire Certified Developer [EMAIL PROTECTED] www.wwstudios

RE: When to use CFLock

2000-11-09 Thread Jason Aden
and session variables. Hope this helps! Jason Jason Aden webworld studios, inc. (703) 864-2434 [EMAIL PROTECTED] www.wwstudios.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, November 10, 2000 12:09 AM To: CF-Talk Subject: When to use CFLock

RE: Query assignment... copy or reference?

2000-10-07 Thread Jason Aden
;#wApplication#" output="request.appVars" action="WDDX2CFML" hth, Jason Jason Aden webworld studios, Inc. (703) 864-2434 [EMAIL PROTECTED] -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Saturday, October 07,

RE: Web servers

2000-09-06 Thread Jason Aden
I've got a few Windows 2000 machines, and all of them have IIS on them. It's on the install CD, so you should be able to add it. I've got CF 4.5.1, Spectra 1.0.1, and Tardis running on Windows 2000 Pro, so it should work. Jason Aden webworld studios, Inc. [EMAIL PROTECTED] -Original Message

Boolean values in WDDX

2000-09-04 Thread Jason Aden
e Boolean variables would be appreciated. Thanks! Jason Aden webworld studios, Inc. [EMAIL PROTECTED] -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/i

RE: ValueList Question ...

2000-08-12 Thread Jason Aden
That is correct, except no spaces after the commas. You also have quotedValueList() which will give you the same list but with single quotes around it. hth, Jason Web Application Developer webworld studios, inc. -Original Message- From: PC [mailto:[EMAIL PROTECTED]] Sent: Saturday,

RE: Escape '' in URL?

2000-08-12 Thread Jason Aden
Ron, Use the URLEncodedFormat("string goes here") function. It'll transform all special characters into a format that works for the URL. For instance, it'll change the "" to "%26". Jason Web Application Developer webworld studios, inc. -Original Message- From: Ron Connelly

RE: CF_Newbie

2000-08-12 Thread Jason Aden
Agreed. You need to have a WHERE clause in there. If there are any fields in those tables that have common data, use a WHERE clause like: SELECT ci.CityID, ci.City, cu.CuisineID, cu.Cuisine FROMCityData ci, CuisineData cu WHERE ci.COMMON_FIELD = cu.COMMON_FIELD Otherwise, there's

RE: CSv

2000-08-11 Thread Jason Aden
Comma-Separated Values file. Basically just a representation of the DB tables using commas to separate the values. Jason Web Application Developer webworld studios, inc. -Original Message- From: Jim Taylor [mailto:[EMAIL PROTECTED]] Sent: Friday, August 11, 2000 12:18 PM To: [EMAIL

RE: Is there a variable for a query's name?

2000-08-10 Thread Jason Aden
It's 3:40AM, but I think I understand what you want. I don't think CF provides a way to do that. Even if there were a CGI variable for the query name, it would have to be a list of query names for all queries run on that request, and I don't think that would help you very much in making this

RE: Alert

2000-08-10 Thread Jason Aden
Are you sending the user to another page, or continuing with processing after this? If so, remember that javascript is client-side. Any CF will ALWAYS run BEFORE this javascript is executed. With a CFABORT, you stop there, the page is sent to the user, and he gets the alert. Without that, all

RE: Newbie: Sessions

2000-08-10 Thread Jason Aden
I find session variables much more useful than cookies. I mainly use cookies for storing information about the user for the next time he comes to the site. I always put the user's profile in the session scope, shopping cart data, queries taylored to that user, etc. You can store any datatype in

RE: Can CF be run on a machine which is also running Service Pack 6 Alpha?

2000-08-10 Thread Jason Aden
The problem is that there is a tag or two that don't work on SP 6. I can't remember which one(s), but you may be able to find it on the Allaire site. That's where I first read about the problem. Jason Web Application Developer webworld studios, inc. -Original Message- From: Wayne, Kurt

RE: Problem carrying over form values.

2000-08-10 Thread Jason Aden
You can try replacing the " with some string you know the person will not enter, like ยง, or some other character entity. Then you can get that data from the hidden form field and convert it back before entering it into the database. Jason Web Application Developer webworld studios, inc.

RE: CF, ODBC and 64k data

2000-08-09 Thread Jason Aden
With CF 4.0, you will not be able to submit more than 64k. At CF 4.5, you can do this. You need to go into the ODBC area of the administrator and enable long text retrieval. Jason -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 09, 2000 6:55 PM

RE: URLs with in CFMail

2000-08-09 Thread Jason Aden
agreed -Original Message- From: Brian Thornton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 09, 2000 10:12 PM To: [EMAIL PROTECTED] Subject: Re: URLs with in CFMail that's right... It's not your problem. At 09:04 PM 8/9/2000 -0500, you wrote: I want to include a URL that