Radius Server

2001-01-07 Thread Mark Theis
what is a radius server? Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Re: Radius Server

2001-01-07 Thread john ellard
Remote Authentication Dial In User Service - it's described in rfc 2138. john At 03:28 07/01/01 -0800, you wrote: what is a radius server? Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Re: Jacascript

2001-01-07 Thread Michael Thomas
history.back(2); will do it. From: Ryan [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Jacascript Date: Thu, 04 Jan 2001 08:17:07 -0600 Why even set the location property? Can't you just say window.history.back(-2); right after the alert? Oh, another

RE: Application Start up?

2001-01-07 Thread SMITH,RANDY (HP-USA,ex1)
Well said Papa Dave! Thanks for the insight! Whether or not your application times out is really based on how you run your hardware, set up CF, and write your applications. In our particular case, we'd probably restart the application before we timed out, but we have particular reasons for

Re: CF vs. Lotus Domino App Server

2001-01-07 Thread Jeffry Houser
Dave Watts wrote: I just wanna say here, that I think Domino is a great application and a great development environment. If you want to create something on the web, though, it may not be the best choice. I think the real benefit with Domino is security. It has easily implementable

Re: CF vs. Lotus Domino App Server

2001-01-07 Thread paul smith
Flawed? True. But easily fixed with ColdFusion. Use ColdFusion mappings and store the PDFs in a directory the web server cannot access. best, paul At 09:49 AM 1/7/01 -0500, you wrote: One of the first CF sites I worked on showed users a page with a list of PDFs. However, if you knew

RE: Automatic locking (was: Request VS Application scope)

2001-01-07 Thread Peter Theobald
At 02:41 AM 1/7/01 -0500, Dave Watts wrote: [...] There is NO performance penalty over properly used manual read locking.[...] Are you sure there's no performance penalty? How much testing have you done on this? Or, are you relying on a test done by someone else? How accurate was that test? Got

Date Formating

2001-01-07 Thread Aaron Rouse
What would be the best way to go about making a select drop down populated with all of the months of the year and to display them abbreviated? I am currently using the following code which works perfect for displaying the months non-abbreviated. select name="OccMonth" option

Re: CF vs. Lotus Domino App Server

2001-01-07 Thread Bud
On 1/7/01, paul smith penned: Flawed? True. But easily fixed with ColdFusion. Use ColdFusion mappings and store the PDFs in a directory the web server cannot access. How would you access the files? I tried that using cfinclude to access a zip file and a pdf file, but cfinclude appears to be

RE: Date Formating

2001-01-07 Thread Duane Boudreau
Use the Left function. See below select name="OccMonth" option value="" cfloop FROM="1" To="12" Index="MonthNumber" OPTION Value="#MonthNumber#" #IIf(Variables.OccMonth IS "#MonthNumber#",DE ("SELECTED"),DE(""))# #Left(MonthAsString(Monthnumber), 3)# /cfloop

Re: Date Formating

2001-01-07 Thread Aaron Rouse
I thought about that at first, but from what I have found the standard date abbreviations are the following which means taking just the first three letters would not work. January Jan. February Feb. March Mar. April Apr. May May June June July July August Aug. September Sept. October Oct.

RE: Slightly OT

2001-01-07 Thread Duane Boudreau
Sorry, but I have to comment - (engage soapbox mode) Managers that choose ASP over CF are showing that they have no business being a manager. I've done both. My first reaction to ASP was "Why is this so difficult?" My first reaction to CF was "Wow, someone finally made it simple."

RE: Date Formating

2001-01-07 Thread Duane Boudreau
I've always just used the first three letters but you could do: cfset ListMonthsWithFour = "6,7,9" cfset Variables.OccMonth = "12" cfoutput select name="OccMonth" option value=""/option cfloop FROM="1" To="12" Index="MonthNumber" OPTION

Re: Date Formating

2001-01-07 Thread Aaron Rouse
Thanks for the help, I think I will am going to go with the following, it is messier than I hoped but works: cfscript DateList = "Jan." "," "Feb." "," "Mar." "," "Apr." "," "May" "," "June" "," "July" "," "Aug." "," "Sept." "," "Oct." "," "Nov." "," "Dec."; /cfscript

RE: Date Formating

2001-01-07 Thread Ben Forta
Put it in a database, three columns: 1) Month_Number 2) Month_Name_Full 3) Month_Name_Abbrev Then just cache the query. This will also help if you veer need to internationalize the application. --- Ben -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED]] Sent: Sunday,

RE: CF vs. Lotus Domino App Server

2001-01-07 Thread Cameron Childress
Use ColdFusion mappings and store the PDFs in a directory the web server cannot access. How would you access the files? I tried that using cfinclude to access a zip file and a pdf file, but cfinclude appears to be looking for text templates only. I know I can do it with cfcontent using the

Re: CF vs. Lotus Domino App Server

2001-01-07 Thread paul smith
You're right. That's what I was thinking, but got my signals crossed thinking I needed (or could use) CF mapping. best, paul At 01:34 PM 1/7/01 -0500, you wrote: I know I can do it with cfcontent using the path on the server, but not using mappings

RE: CF vs. Lotus Domino App Server

2001-01-07 Thread Cameron Childress
Oh.. hmm.. maybe you're right, but I could swear I hd used mappings in CFCONTENT before... -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 07, 2001 2:27 PM To: CF-Talk Subject: Re: CF vs. Lotus Domino App Server You're right. That's what I

RE: CF vs. Lotus Domino App Server

2001-01-07 Thread Bud
On 1/7/01, Cameron Childress penned: Assuming that d:\wwwroot is your website root and d:\attachments is where you store the files, you would create a mapping in the CFAdmin to d:\attachments and simply refer to it in your CFCONTENT tag. IE: CFCONTENT TYPE="application/pdf"

Re: Date Formating

2001-01-07 Thread larry
What about: #Left(MonthAsString(Monthnumber),3)# Larry Juncker Senior Cold Fusion Developer Heartland Communications Group, Inc. - Original Message - From: "Aaron Rouse" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Sunday, January 07, 2001 12:25 PM Subject: Date Formating

Re: Date Formating

2001-01-07 Thread Bud
On 1/7/01, Aaron Rouse penned: Thanks for the help, I think I will am going to go with the following, it is messier than I hoped but works: cfscript DateList = "Jan." "," "Feb." "," "Mar." "," "Apr." "," "May" "," "June" "," "July" "," "Aug." "," "Sept." "," "Oct." ","

RE: CF vs. Lotus Domino App Server

2001-01-07 Thread Cameron Childress
IE: CFCONTENT TYPE="application/pdf" FILE="/yourmapping/filename.pdf" I get a file not found error from CF when I try and use a mapping with cfcontent. Yeah, I think I was wrong about that. Oh well :) -Cameron ~~ Structure

insert query problems

2001-01-07 Thread Seamus Campbell
Hi I keep getting this error message, have racked my brains, doublechecked field names form names and table names but still haven't got a clue as to the problem. Can anyone help, please? Let me know if any more info is required Many thanks Seamus ODBC Error Code = 37000 (Syntax error or

RE: insert query problems

2001-01-07 Thread Dave Watts
I keep getting this error message, have racked my brains, doublechecked field names form names and table names but still haven't got a clue as to the problem. ... ODBC Error Code = 37000 (Syntax error or access violation) [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT

Re: insert query problems

2001-01-07 Thread Don Vawter
Date is a reserved word in Access. I think there is some way around it (by surrounding field names with [ or something but I am not sure). You can also try prefixing date with tablename, it may accept that. I think the better solution is to rename the field in the table so you don't have the

Re: insert query problems

2001-01-07 Thread Shawnea Carter
Not to mention that date is a reserved word. Shawnea Carter - Original Message - From: "Dave Watts" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Sunday, January 07, 2001 6:02 PM Subject: RE: insert query problems I keep getting this error message, have racked my brains,

RE: insert query problems

2001-01-07 Thread Christopher P. Maher
Is the field Date a DateTime field? If so, then the problem may be the value you are putting in that field. Use CreateODBCDate as it appears you used for DateModified. The other problem now that I look closer is that you have Article in the field list twice. Chris

Re: NT SP6a ok?

2001-01-07 Thread Michael
I know that before my system at work was upgraded with Win2000Pro, I was in workstation4.0 w/sp6a and cf server studio and myself and 4 other consultants had NO problems , that I know of nor the systems Network Admin who does all the trouble. "Dave Watts" [EMAIL PROTECTED] wrote in message

Re: insert query problems

2001-01-07 Thread Seamus Campbell
many thanks for all those every quick replies. I had mistyped the "article" in twice so that wasn't the query problem But it appeared that using Date was the culprit Again thanks to everyone Seamus At 09:54 AM 8/01/01 , you wrote: Hi I keep getting this error message, have racked my brains,

datediff in javascript

2001-01-07 Thread Mak Wing Lok
hi, did anyone know how to do a DateDiff in javascript? I'm allowing using to enter 2 different date in a form to do a search which i want to limit the period within six month, i want to valid the date different before i submit the form, rather to do the validation using DateDiff() on another

Can this be done with CF

2001-01-07 Thread Parker, Kevin
Hi - wondering if anyone on the list can give me some advice please. The following risk calculator was done in-house for use on our Intranet but now the business area want to make it available on the web. http://www.e-safety.sa.gov.au/cutter/riskassessmentcalculator.htm (DO NOT PRESS THE GO

RE: Can this be done with CF

2001-01-07 Thread Robert Everland III
This looks all client based. You will need something like java or JavaScript to do the same thing. Looks also like flash could end up doing the same thing. CF is all backend based and will have no affect on what you show to the client. Bob Everland -Original Message- From: Parker,

RE: Can this be done with CF

2001-01-07 Thread Duane Boudreau
Hi - wondering if anyone on the list can give me some advice please. The following risk calculator was done in-house for use on our Intranet but now the business area want to make it available on the web. http://www.e-safety.sa.gov.au/cutter/riskassessmentcalculator.htm (DO NOT PRESS THE

Problems submitting a custom tag ...

2001-01-07 Thread CF
OK .. I am trying to submit a spiffy new date selection custom tag. I encountered 1 or 2 errors while trying to upload my tag. I finaly got a blank screen that just displays Allaire's logo, along with some links. My question, to those of you have run into this is, did my submission make it? I

Problem w/Frames Netscape

2001-01-07 Thread Paige Chandler
Hello All and Happy New Year, I have been working with a some new Frames architecture which displays fine in IE 5.5. I can't get NS 4.7 to display anything. I've even creatred a test page with the very basics below. IE displays "Can't find the page etc." When I insert the appropriate pages

Re: Problem w/Frames Netscape

2001-01-07 Thread Don Kiggins
I think if you add the noframes and body tags after your frameset it should work for you. Netscape is VERY picky about things like that. Don Kiggins - Original Message - From: "Paige Chandler" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Sunday, January 07, 2001 9:01 PM

RE: Problem w/Frames Netscape

2001-01-07 Thread Paul Sinclair
Paige, See what happens if you put in a body tag after the closing /head tag. Be sure to put in a closing /body tag before /html. Don't know if this will do it or not. But Netscape is really peculiar with tables I know - if they aren't just right you will get an empty page as you are

Refer URL

2001-01-07 Thread ibtoad
How can I display a specific page based on where the user came from? In other words I want to have a cfif statement decide which page to show depending on what URL the user reached the page from. Thanks, Rich ~~ Structure your ColdFusion code

Re: Refer URL

2001-01-07 Thread Alex Puritche
ibtoad, cfset mypreviouspage="http://www.mycompany/mypath/myfile.cfm" cfif cgi.http_referer eq previouspage cfset allisok=1 cfelse cfset allisok=0 /cfif Monday, January 08, 2001, 5:41:53 AM, you wrote: ibtoad How can I display a specific page based on where the user came from? In ibtoad other

RE: Refer URL

2001-01-07 Thread Shane Witbeck
Use the CGI.HTTP_REFERRER variable Shane Witbeck www.digitalsanctum.com -Original Message- From: ibtoad [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 07, 2001 10:42 PM To: CF-Talk Subject: Refer URL How can I display a specific page based on where the user came from? In other

Re: Refer URL

2001-01-07 Thread Howie Hamlin
Use the cgi.http_referer variable and do a cflocation based on that. Note that not all browsers send the referer. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's most configurable mail

RE: Problem w/Frames Netscape

2001-01-07 Thread Duane Boudreau
You ended your frame set incorrectly. try /frameset Duane Boudreau CTO, CFExperts -Original Message- From: Paige Chandler [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 07, 2001 10:01 PM To: CF-Talk Subject: Problem w/Frames Netscape Hello All and Happy New Year, I have

RE: Can this be done with CF

2001-01-07 Thread lsellers
The trouble is it only runs in IE5 because it uses vml (a proprietary MS thing which I hadn't heard of apparently). You're in a bit of bind here. vml is MS's run at svg. You could just recode into svg, but... support of svg is still spotty at the moment as it's still rather new. Although that

Re: Problem w/Frames Netscape

2001-01-07 Thread Erika Foster
Hi Paige, I have this problem every single time I write a page with Frames. I've found the best way to figure out how to make it work is to find a page on the Web that does have frames and does work in Netscape and just copy the frameset and frame attributes that are working for that page, then

SQL aggregate functions within queries.....

2001-01-07 Thread Michael Thomas
I keep running into this same problem within my queries. The problem seems to be using SQL aggregate functions with some fields but not all fields that Im referencing in my queries. I've seen plenty of source code for other queries where they work fine with that combination but mine never seem

Re: SQL aggregate functions within queries.....

2001-01-07 Thread Don Vawter
Put simply aggregate functions combine rows into "buckets". Once combined you can't get the details of the rows that are combined. If you need information about and individual row you will need to use the group by clause. It is sort of like saying "throw all these marbles in a bucket" and then

Javascript in Netscape

2001-01-07 Thread han peng
hey i had a prob i'm opening a new window with size 500,370. but for the link in there.. i wan the next page to be shown as full screen or at least can be resized... tried the codes below.. can work for IE.. but cant for netscape.. any solution? cheers han File A: function