RE: OT SQL SERVER

2001-01-08 Thread DeVoil, Nick
From http://www.sql-server-performance.com/glossary.asp : When rows are deleted from the leaf level of an index, the are not removed immediately. Instead, they are marked as invalid and are called ghost records. Periodically, SQL Server starts a special housekeeping thread that locates and

RE: Can this be done with CF

2001-01-08 Thread Christoph Schmitz
Hi, it can be done with DHTML and Javascript... depending on what data you want to submit there might also be room for CF: ;-)) Regards, Chris --Original Message-- From: "Parker, Kevin" [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: January 8, 2001 1:52:59 AM GMT Subject:

RE: Slightly OT: CF in Europe

2001-01-08 Thread DeVoil, Nick
Well this is a completely subjective view but my perception is that CF is considered quite a hot technology here in the UK. I don't know, but I believe the relative strength of CF versus ASP is stronger in the US than in Europe because a lot of people in the US started building web apps before

CF_Activedit alternatives??

2001-01-08 Thread Francisco Montes; Spain on Line
Hi all! I´ve been using the CF_Activeedit custom tag for some time now but i´ll like to know about other similar tags i could use as well. I´ve found out that it doesn´t work properly with one of our Mac machines for some reason (??). Does anybody know of any other tag that also allows text

RE: Slightly OT: CF in Europe

2001-01-08 Thread Paul Johnston
Lets put it this way. I have been doing web development work since coming out of the University of Bath (for all you Americans, it's an old Roman City in England that has Roman Bath's in it hence the name) not too many years ago. Since then I have done HTML then Perl, then CF. As far as I'm

RE: Problem w/Frames Netscape

2001-01-08 Thread Philip Arnold - ASP
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 describing.

RE: deleting session variables

2001-01-08 Thread Paul Johnston
We do have one reason for not using session vars. Clustering. It takes out the need to worry about the variables being held in memory. Paul -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 07, 2001 7:57 AM To: CF-Talk Subject: RE: deleting session

RE: Slightly OT: CF in Europe

2001-01-08 Thread Len Conrad
Well this is a completely subjective view but my perception is that CF is considered quite a hot technology here in the UK. I don't know, but I believe the relative strength of CF versus ASP is stronger in the US than in Europe because a lot of people in the US started building web apps before

RE: Slightly OT: CF in Europe

2001-01-08 Thread Adam Reynolds
I would agree with Paul here. Financially, CF is extremely lucrative in the UK with rates around 30% higher than ASP. The reasons are quite simply that ASP is more popular, but anybody that used to do VB now does ASP, so the market may be bigger, but so is the recruitment base. This has made

RE: Slightly OT: CF in Europe

2001-01-08 Thread Paul Johnston
One thing though...there is a severe lack of GOOD CF developers in the UK. It's amazing the number of people that attempt to blag it. If I interview, I use a simple questionaire that I walk through with the potential...sometimes it really is quite embarrassing. I have to

RE: CF_Activedit alternatives??

2001-01-08 Thread Michel Vuijlsteke
I've been converted to ezEdit. Free. Good. Displays a textarea if the browser doesn't support what it needs. Michel Vuijlsteke -Original Message- From: Francisco Montes; Spain on Line [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 10:58 AM To: CF-Talk Subject: CF_Activedit

OT: Learning Javascript Books,

2001-01-08 Thread Michael
Any recommendations, Please Thanks Michael ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Time Management / Billing applications / time sheets

2001-01-08 Thread Daryl Fullerton
Hi all, Does anyone know any CF based applications for project management / Cleien billing?? Thanks and a happy new year to all. D Daryl Fullerton, Managing Partner, BizNet Solutions, Allaire Premier Partner (Ireland) 133 - 137 Lisburn Road Belfast BT9 7AG N.Ireland Direct +44 (0) 28 9022

RE: Learning Javascript Books,

2001-01-08 Thread Daye, Marianne
JavaScript Bible by Danny Goodman consists of both a tutorial and an object and language reference. A little over a thousand pages + example scripts on CD-ROM. It's pretty extensive, and easy to understand. Check out the reviews at amazon.com, ISBN 0-7645-3188-3. Marianne Daye

RE: Learning Javascript Books,

2001-01-08 Thread Neil Giarratana
If you are truly just learning Javascript, a great starting book is "JavaScript For The World Wide Web 3rd Edition Visual Quickstart Guide" by Tom Negrino and Dori Smith (Peachpit Press). We've had pretty good luck with the Visual Quickstart Guides as they teach one thing at a time, fairly

url string

2001-01-08 Thread Jay Brushett
Hi, Just wondering if there was a way to reference the entire url string instead of just a certain named variable. TIA, Jay Strategy ~ Creativity ~ Technology Jay Brushett [EMAIL PROTECTED] Developer ZeddComm Inc. 2nd Floor, The Tower | 100 Signal Hill Road St.

RE: url string

2001-01-08 Thread Ben Forta
#CGI.QUERY_STRING# --- Ben -Original Message- From: Jay Brushett [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 5:16 AM To: CF-Talk Subject: url string Hi, Just wondering if there was a way to reference the entire url string instead of just a certain named variable.

Easy CFLOOP Question

2001-01-08 Thread KJis18
is there a way to find out what row i am on in a cfloop? Like inside my loop, call a condition like this cfloop query="test" startrow="1" endrow="#rows.RecordCount#" cfif cfloop.row EQ 1 We are on row 1 cfelse cfloop.row GT 1 We are not on row 1

RE: Easy CFLOOP Question

2001-01-08 Thread John Stanley
Kevin, You can use cfoutput query and then refer to the currentrow attribute. John Stanley ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Easy CFLOOP Question

2001-01-08 Thread bflynn
First thing that comes to my mind is a loop counter: cfset counter=1 cfloop query="test" startrow="1" endrow="#rows.RecordCount#" cfif cfloop.row EQ 1 We are on row 1 cfelse cfloop.row GT 1 We are not on row 1 /cfif cfset counter =

RE: Easy CFLOOP Question

2001-01-08 Thread LKHaas
Since you are looping over a query, I believe that you can use the queryname.currentrow variable. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 8:45 AM To: CF-Talk Subject: Easy CFLOOP Question is there a way to find out what row i

Re: Easy CFLOOP Question

2001-01-08 Thread Marius Milosav
queryName.recordCount Check on line documentation (look at cfquery) for more information. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Help Desk Demo (VHD) www.scorpiosoft.com/vhd/login.cfm - Original Message - From: [EMAIL PROTECTED] To:

Re: Easy CFLOOP Question

2001-01-08 Thread Eric Dawson
cfloop query="test" startrow="1" endrow="#rows.RecordCount#" cfoutput#test.currentrow#/cfoutput /cfloop From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Easy CFLOOP Question Date: Mon, 08 Jan 2001 08:44:48 EST is there a way to find out what row i am

RE: Easy CFLOOP Question

2001-01-08 Thread Duane Boudreau
rows.currentrow (assuming the rows is the name of your query) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 8:45 AM To: CF-Talk Subject: Easy CFLOOP Question is there a way to find out what row i am on in a cfloop?

RE: Billing Accounting Inventory Management

2001-01-08 Thread Neil Giarratana
Depends on the price point. If you're truly talking Peach Tree or Quickbooks, no. If price is not the main concern, you might check out Sage Software's Acuity. It's based on COM Component architecture with a SQL Server 7 backend. That might be suitable for integration but the cost is high.

RE: Easy CFLOOP Question

2001-01-08 Thread Hal Helms
Yes, use currentRow. Hal Helms == See www.ColdFusionTraining.com for info on "Best Practices with ColdFusion Fusebox" training, Jan 22-25 == -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 8:45 AM To: CF-Talk Subject: Easy CFLOOP

CFMAIL TYPE=HTML

2001-01-08 Thread Aidan Whitehall
I know it's the default but is there another option for "TYPE=" in CFMAIL specifying plain text (instead of HTML)? Thanks -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44 (01744)

RE: url string

2001-01-08 Thread Jay Brushett
Thanks Ben. I discovered it shortly after posting the message, I didn't even bother to think about server variables! Doh! Thanks again, Jay At 08:42 AM 1/8/2001 -0500, you wrote: #CGI.QUERY_STRING# --- Ben -Original Message- From: Jay Brushett [mailto:[EMAIL PROTECTED]] Sent:

Killing Session Vars

2001-01-08 Thread Dave Hannum
It seems that there is a command that will kill all existing session variables on a server without naming them individually, similar to the ClearStruct function. Can someone tell me what that is? Dave ~~ Structure your ColdFusion code with

Re: Easy CFLOOP Question

2001-01-08 Thread Marius Milosav
Sorry, too early in the morning. The correct answer is: queryName.currentRow Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Help Desk Demo (VHD) www.scorpiosoft.com/vhd/login.cfm - Original Message - From: "Marius Milosav" [EMAIL PROTECTED]

Using .xls datasource

2001-01-08 Thread Erika Foster
Can someone point me in the right direction to find information on using an Excel file as a CF datasource? I've got a highly formatted Excel spreadsheet that my client would like to be able to add/update/delete lines through his browser. Thanks, Erika Foster engineering-environmental

RE: url string

2001-01-08 Thread Albert K Arhin
try the CGI variables -Original Message- From: Jay Brushett [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 10:16 AM To: CF-Talk Subject: url string Hi, Just wondering if there was a way to reference the entire url string instead of just a certain named variable. TIA, Jay

CF and Siebel

2001-01-08 Thread Neil Clark
Anyone had any experience with CF and Siebel? N ! --- Neil Clark Senior Web Applications Engineer ColdFusion / Spectra / XML mcb digital [Allaire Premium Partner] Tel. +44 (0)20 8941 3232 Tel. +44 (0)20 8408 8131 [Direct] http://www.mcbdigital.com

RE: Using .xls datasource

2001-01-08 Thread Daryl Fullerton
Erika, Go to www.cfcomet.com it will have everything you need. Have fun We are doing a lot of CF/Excel at the moment Regards D Daryl Fullerton, Managing Partner, BizNet Solutions, Allaire Premier Partner (Ireland) 133 - 137 Lisburn Road Belfast BT9 7AG N.Ireland Direct +44 (0) 28 9022

RE: datasource question

2001-01-08 Thread Benjamin S. Rogers
The hostname is actually the datasource name. This is usually chosen by the hosting company so you will need to contact them and ask them what the datasource name is. You will also want to check and verify that you are using username and password. In any case when you've figured it out, your

Session End

2001-01-08 Thread Peter Benoit
Why don't my Sessions automatically time out when the browser closes? I set session vars when someone logs into my site, and if they close the browser window then open it back up and revisit the site, the vars are still active. Why is this and what can I do to change it? I use the sessions to

RE: Javascript in Netscape

2001-01-08 Thread Dylan Bromby
openwin might be a newer function (not sure). try this though; SCRIPT LANGUAGE="JAVASCRIPT" function open_window(URL) { var popup = window.open(URL, "popup_win", "TOOLBAR=NO,SCROLLBARS=YES,WIDTH=500,HEIGHT=370"); } /SCRIPT then: A HREF="javascript:open_window('userid.html')"User ID/A

RE: Session End

2001-01-08 Thread Hal Helms
Peter, there's a tutorial on this at www.halhelms.com that explains how to make the session expire when the browser is closed. Hal Helms == See www.ColdFusionTraining.com http://www.ColdFusionTraining.com for info on "Best Practices with ColdFusion Fusebox" training, Jan 22-25 ==

RE: Killing Session Vars

2001-01-08 Thread Scott Wolf
You might want to try this, it's been working for me: CFSCRIPTStructClear(Session);/CFSCRIPT CFCOOKIE NAME="CFID" VALUE="0" EXPIRES="NOW" CFCOOKIE NAME="CFTOKEN" VALUE="0" EXPIRES="NOW" HTH, Scott Wolf Goodfriend Computer Training -Original Message- From: Dave Hannum [mailto:[EMAIL

Re: Killing Session Vars

2001-01-08 Thread Bud
On 1/8/01, Dave Hannum penned: It seems that there is a command that will kill all existing session variables on a server without naming them individually, similar to the ClearStruct function. Can someone tell me what that is? cfset temp = structclear(session) -- Bud Schneehagen - Tropical

Search Engines Dynamic Sites - Best Course

2001-01-08 Thread Paul Sinclair
I'm building a site that will be entirely based on database articles. What are the best methods of making this site search engine friendly so that it can be found? I'm using Fusebox technology if that makes any difference. I know this has been discussed on the list before and I am reviewing the

COUNT field incorrect

2001-01-08 Thread Tom Harris
BlankHello -- anyone know what this error refers to? ODBC Error Code = 07001 (Wrong number of parameters) [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect It started appearing in an app we are working on, we searched the code for anything referring to "count" and there is nothing,

Strange output phenomenon

2001-01-08 Thread Dave Wilson
Hi All, Got a really strange problem here with Paragraphformat Scenario: A user enters a list of names into a form field (textarea field in this case), which is then parsed so as to enter the names into an Access field using the Paragraphformat function in CF. i.e. user inputs: Dave1 Dave2

Re: CF_Activedit alternatives??

2001-01-08 Thread Hassan Khawaja
Hi Paco, Try ezEdit from www.siteobjects.com , and it's free as well. Hassan --- "Francisco Montes; Spain on Line" [EMAIL PROTECTED] wrote: Hi all! I´ve been using the CF_Activeedit custom tag for some time now but i´ll like to know about other similar tags i could use as well. I´ve

RE: Javascript in Netscape

2001-01-08 Thread Dylan Bromby
heh nevermind; i didn't realize you were defining openwin as the function. still, see if the code helps. too early for me to read apparently ;). -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 6:50 AM To: CF-Talk Subject: RE: Javascript in

RE: COUNT field incorrect

2001-01-08 Thread Ben Forta
Without seeing the CFQUERY tag this is just a guess, but that error usually occurs when a) you've mistyped a column name, b) missed single quotes (or used them when you should not have), c) missed commas. --- Ben -Original Message- From: Tom Harris [mailto:[EMAIL PROTECTED]] Sent:

Re: COUNT field incorrect

2001-01-08 Thread David E. Crawford
An example of the query that is failing, as it is being called would be helpful for debugging purposes. DC - Original Message - From: "Tom Harris" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, January 08, 2001 13:05 Subject: COUNT field incorrect BlankHello --

Re: CFMAIL TYPE=HTML

2001-01-08 Thread Howie Hamlin
I think it's just type="text" Regards, Howie - Original Message - From: "Aidan Whitehall" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, January 08, 2001 8:57 AM Subject: CFMAIL TYPE=HTML I know it's the default but is there another option for "TYPE=" in CFMAIL

RE: Slightly OT: CF in Europe

2001-01-08 Thread Benjamin S. Rogers
And what makes Java less proprietary than C++? Last I heard, Sun pulled it from the standards committee. Suggesting that Java would be opened up, was one maneuver in Sun's marketing campaign to regain market share lost to Open Source alternatives to their products:

Re: Killing Session Vars

2001-01-08 Thread Billy Cravens
Actually, Session is a structure, so you answered your own question. However, Allaire recommends that you do not delete "all" session variables, since there are session variables used for session management. --- Billy Cravens Dave Hannum wrote: It seems that there is a command that will

Re: Search Engines Dynamic Sites - Best Course

2001-01-08 Thread Kevin Schmidt
What I have done in the past is generate static html templates from the database that the search engines can pick up and then put a redirect on those pages to the CF templates so when the user follows a link they get the CF page and not the page the search engine has indexed. Kevin -

using foo/1/foo2/2 instead of foo=1foo2=2

2001-01-08 Thread Greg Wolfinger
Hey Guys: I am running IIS 5.0/4.0 web servers and I would like to use a backslash to seperate my var names/values. Amazon uses this method and I like it because it helps discourage url hacking (at least I think so). Alos, I believe using this method you can mask the file name so there is no

Re: Search Engines Dynamic Sites - Best Course

2001-01-08 Thread paul smith
The new thing is that Search Engines are apparently no including the full URL, including that after ? and There's a message in the archive documenting one search engine that does not do this. best, paul At 09:57 AM 1/8/01 -0500, you wrote: I'm building a site that will be entirely based on

RE: Using .xls datasource

2001-01-08 Thread Philip Arnold - ASP
Can someone point me in the right direction to find information on using an Excel file as a CF datasource? I've got a highly formatted Excel spreadsheet that my client would like to be able to add/update/delete lines through his browser. OK, a few of quick pointers; Table names are

RE: COUNT field incorrect

2001-01-08 Thread Philip Arnold - ASP
BlankHello -- anyone know what this error refers to? ODBC Error Code = 07001 (Wrong number of parameters) [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect It started appearing in an app we are working on, we searched the code for anything referring to "count" and there is

RE: using foo/1/foo2/2 instead of foo=1foo2=2

2001-01-08 Thread Philip Arnold - ASP
I am running IIS 5.0/4.0 web servers and I would like to use a backslash to seperate my var names/values. Amazon uses this method and I like it because it helps discourage url hacking (at least I think so). Alos, I believe using this method you can mask the file name so there is no file

RE: Strange output phenomenon - Nevermind

2001-01-08 Thread Dave Wilson
Turns out I was looking at wrong version of the output file. The correct version was parsing out the "1" and "3" characters. - doh ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

Re: using foo/1/foo2/2 instead of foo=1foo2=2

2001-01-08 Thread paul smith
And your question is? best, paul PS The Fusebox method allows this as an option. www.fusebox.org I use my own version. At 10:21 AM 1/8/01 -0500, you wrote: I am running IIS 5.0/4.0 web servers and I would like to use a backslash to seperate my var names/values. Amazon uses this method and I

RE: Strange output phenomenon

2001-01-08 Thread Christopher Olive, CIO
the information shouldn't be going INTO the db with paragraph format. you should have WRAP="HARD" in your textarea control, then insert the data straight. PAaragraphForamt() is for output, not inuput. chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com

Re: Killing Session Vars

2001-01-08 Thread Dave Hannum
Thanks for the responses. I am doing this on my test box. I have good reasons for doing so. I would never plan to do this in production. Dave - Original Message - From: "Billy Cravens" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, January 08, 2001 10:15 AM

OT: Bandwidth and SQL Server questions

2001-01-08 Thread Bud
Sorry for the OT post. You guys are my bestest resource. :) I just bumped up my server to a T-1 where I colo. This outfit has been a little less that honest with me, although I've really been happy with the performance of their network. I have over 100 sites (mostly small static sites)

RE: using foo/1/foo2/2 instead of foo=1foo2=2

2001-01-08 Thread Robert Everland
It's not fusebox that allowes this it's FormURL2Attributes tag, and you can view the source so you can edit it to your needs. I was messing around with it before but haven't really had the need for it yet. This tag would accomplish all that you need. Robert Everland III Web Developer Dixon

Differences between OLE DB and ODBC

2001-01-08 Thread Andres
Good morning all, I Created a page that accesses the same database table but with two different datasources as shown below: cfquery name="FindUsers" datasource="facilitadortestsite_ole" dbtype="OLEDB" debug SELECT * FROM TeaserUsers /cfquery cfquery name="FindUsers_odbc"

Re: using foo/1/foo2/2 instead of foo=1foo2=2

2001-01-08 Thread paul smith
Well, I use a URL like: http://www.MyWebsite.com/HL/LL/LO/index.cfm/IN.526/CD.3142036/CN.53306261/HD.1000/AL.A/OR.50897.HTM which separates Variables name/value with a "." The my app_globals.cfm (or application.cfm) contains the following to parse the URL: !--- Strip ".htm/.html" from the

Accessing Excel Files

2001-01-08 Thread Chris Sham
Does anyone have tips on accessing excel files with cold fusion through odbc. (other than 'don't'). With the following code I only get access to one row of the spreadsheet (F2, F3, ...) Any suggestions? CFQUERY NAME="tmp" DATASOURCE="BorIMport" SELECT G9 FROM "Form 3$" /CFQUERY CFLOOP

CFMAIL and hair loss

2001-01-08 Thread Aidan Whitehall
I'm having problems building an HTML e-mail in one template and passing it back as a variable to the calling template to then send it. The GenerateInvoice tag builds the Invoice as a webpage, ready to send with CFMAIL and TYPE="HTML". That bit works fine. If you output #variables.Invoice# to the

RE: remote server response

2001-01-08 Thread Jeff Sarsoun
Jennifer, I'm finishing up a CFX tag that will do what you need. Right now what you can do is write a script that will parse through your templates extracting out http, ftp, or mailto: tags. You can dump these into a table then as a scheduled task you could cfx_http to the address to get the

RE: Bandwidth and SQL Server questions

2001-01-08 Thread Tony Gruen
Bud, For a switch I highly recommend a HP Procurve 2524. http://www.hp.com/rnd/products/switches/switch2524-2512/summary.htm Tony Gruen -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 7:51 AM To: CF-Talk Subject: OT: Bandwidth and SQL Server

Re: OT: Learning Javascript Books,

2001-01-08 Thread Billy Cravens
O'Reilly's JavaScript: The Definitive Guide It's not a fun or easy read like For Dummies, etc books, but it teaches you the language from the grounds up, as opposed to the typical approach of only covering basic form validation and DHTML. Plus the reference section is excellent. -- Billy

Downloads on the Allaire site

2001-01-08 Thread Peter Benoit
When I go to download files from the Allaire developers exchange, how do they do that download app? I've tried fiddling around with CFHEADER and CFCONTENT but it's not working. Can someone help me understand this? ~~ Structure your ColdFusion

2nd try---CFMAIL time issue

2001-01-08 Thread Jeff Britts
We have an issue with the sent time of mail going out through CFMAIL. A check of the CF servers and the mail servers reveal those times correct. However, this is what the header looks like. Received: from fusion-prod1.blah.com ([10.200.5.95]) by corp-exc1.blak.com with SMTP (Microsoft

RE: OT: Learning Javascript Books,

2001-01-08 Thread Hal Helms
I think Danny Goodman's JavaScript Bible is also fantastic. The thing I appreciate most is the painstaking research he did on what differences there are among browsers and versions. Hal Helms == See www.ColdFusionTraining.com for info on "Best Practices with ColdFusion Fusebox" training, Jan

RE: OT: Learning Javascript Books,

2001-01-08 Thread Philip Arnold - ASP
O'Reilly's JavaScript: The Definitive Guide It's not a fun or easy read like For Dummies, etc books, but it teaches you the language from the grounds up, as opposed to the typical approach of only covering basic form validation and DHTML. Plus the reference section is excellent. ORA

Re: aliasing using cfmail

2001-01-08 Thread Owen Leonard
Could you elaborate on what you mean by 'compliant.' I ask because my test worked both with and without quotes. Is it an issue of different mail servers and clients? -- Owen - Athens County Library Services http://www.athenscounty.lib.oh.us - Original Message - From:

RE: OT: Learning Javascript Books,

2001-01-08 Thread Lord, Heath
Make sure to get the O'Reilly Javascript The definative Guide as a companion to it, and quite possibly the O'Reilly DHTML book too. The Javascript Bible is good for a lot, but the combination is much better. Just my 2 cents Heath -Original Message- From: Hal Helms [mailto:[EMAIL

RE: Bandwidth and SQL Server questions

2001-01-08 Thread bflynn
As a general resource: http://dir.yahoo.com/Computers_and_Internet/Communications_and_Networking/Be nchmarks/ Hopefully theres something there that would be useful. Brian -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 10:51 AM To: CF-Talk

RE: aliasing using cfmail

2001-01-08 Thread JustinMacCarthy
By compliant I sure Howie means "compliant with the mail RFCs" , but Howie is the resident email expert :-) Check out http://www.tac.nyc.ny.us/mail/rfc-index.html Some mail server will "fix" the address though ... Justin cf-talk Mail 19 number of 2001 :-) -Original Message- From:

Re: aliasing using cfmail

2001-01-08 Thread Howie Hamlin
Yes, I meant according to RFC. Regards, Howie - Original Message - From: "JustinMacCarthy" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, January 08, 2001 11:57 AM Subject: RE: aliasing using cfmail By compliant I sure Howie means "compliant with the mail RFCs" ,

Re: Bandwidth and SQL Server questions

2001-01-08 Thread Howie Hamlin
Here is one tool: http://www.msn.zdnet.com/partners/msn/bandwidth/speedtest.htm HTH, Howie - Original Message - From: "Bud" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, January 08, 2001 10:50 AM Subject: OT: Bandwidth and SQL Server questions Sorry for the OT

RE: OT: Learning Javascript Books,

2001-01-08 Thread Shane Witbeck
I recommend the Javascript Bible as well as the following: The Book of Javascript : A Practical Guide to Interactive Web Pages by Dave Thau, David Thau Shane Witbeck www.digitalsanctum.com -- Original Message -- From: "Hal Helms" [EMAIL PROTECTED]

Re: Bandwidth and SQL Server .. [oops sorry]

2001-01-08 Thread Stephen M Aylor
Farhvegnugen . Sorry folks, that was meant to go direct to Bud. Steve - Original Message - From: "Bud" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, January 08, 2001 7:50 AM Subject: OT: Bandwidth and SQL Server questions Sorry for the OT post. You guys are my

Re: Bandwidth and SQL Server questions

2001-01-08 Thread Stephen M Aylor
Ive got an Intel ES410T 16 Port - brand spanking new in the retail box :-) Not to mention some pretty bad ass Fiber Gigabit Adapters PWLA8490SX, and Gigabit over copper PWLA8490T Adapters. Intel ES410T 16 Port 10/100 - $365.00 (CF Dude Discount) List is like $600+ Steve - Original Message

RE: remote server response

2001-01-08 Thread Gordon Burns
Hi Jeff, If this tag is going to be made available generally may I join the queue already forming. Kind regards Gordon At 11:03 08/01/01 -0500 Jeff Sarsoun said Jennifer, I'm finishing up a CFX tag that will do what you need. Right now what you can do is write a script that will parse

Contract work??? OT

2001-01-08 Thread joeug
Hello all, I have been developing in ColdFusion, Sql Server, DB400(AS/400), Oracle, ASP, JavaScript, Html on NT/2000 Platforms.. Do you guys know any website/company that outsources/sub-contracts Projects/Contracts. Preferably Remote Development. Appreciate it. Sorry for the OT

Hierarchial Display

2001-01-08 Thread Joe Sheble aka Wizaerd
I am able to retrieve hierarchial data just fine using a nested custom tag, and this tag populates a query for me with the data. However, I'm having a real problem with trying to figure out how to display it. Here's an example of the data: 0325 - Thomas - Graf - 0645 - Robert - Nudo

RE: Contract work??? OT

2001-01-08 Thread Simon Horwith
you may want to use guru.com to search for positions like this. ~Simon Simon Horwith Allaire Certified ColdFusion Instructor Certified ColdFusion Developer Fig Leaf Software 1400 16th St NW, # 220 Washington DC 20036 202.797.6570 (direct line) www.figleaf.com -Original

Re: OT: Learning Javascript Books,

2001-01-08 Thread Michael
By ORA do you mean O'Reily? If not could you pass along what one your referring to, Thank You Michael "Philip Arnold - ASP" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... O'Reilly's JavaScript: The Definitive Guide It's not a fun or easy read like For

RE: Hierarchial Display

2001-01-08 Thread DeVoil, Nick
Why not get the custom tag to populate a tree structure instead of a query? Then you can write another recursive custom tag to display the data much more easily. -Original Message- From: Joe Sheble aka Wizaerd [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 5:41 PM To: CF-Talk

RE: Contract work??? OT

2001-01-08 Thread JustinMacCarthy
There is a cf-jobs mailing list @ houseoffusion, also I believe there is a JobPosting section at the http://www.acfug.org/ web site. Justin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 5:39 PM To: CF-Talk Subject: Contract work???

RE: Contract work??? OT

2001-01-08 Thread Philip Arnold - ASP
I have been developing in ColdFusion, Sql Server, DB400(AS/400), Oracle, ASP, JavaScript, Html on NT/2000 Platforms.. Do you guys know any website/company that outsources/sub-contracts Projects/Contracts. Preferably Remote Development. Appreciate it. Sorry for the OT question.

RE: OT: Learning Javascript Books,

2001-01-08 Thread Philip Arnold - ASP
By ORA do you mean O'Reily? If not could you pass along what one your referring to, Sorry - ORA is O'Reilly Associates Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 "Websites for the real world"

Re: Hierarchial Display

2001-01-08 Thread Wjreichard
I recently ran across a sweat application that generated an org chart. What is so sweat is that the Hierarchial data is housed in a XML doc ... and then XSL parser recursively transforms the data with embedded VML to handle the graphical framework. And it executes at the client! The only

Re: aliasing using cfmail

2001-01-08 Thread Howie Hamlin
Some mail servers are more strict than others. Some validate only the email addresses in the protocol and some actually parse the mail headers and check those for validity. However, bottom line, if you want to make sure that you are compliant 100% of the time your address needs to be the way I

RE: Hierarchial Display

2001-01-08 Thread Michael Rosario
What web browsers does you support? If you use IE, you can easily build an XML based tree control to contain your information... -Original Message- From: Joe Sheble aka Wizaerd [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 12:41 PM To: CF-Talk Subject: Hierarchial Display

RE: Hierarchial Display

2001-01-08 Thread Clint Tredway
Cna you tell us what the name of the app is? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 12:07 PM To: CF-Talk Subject: Re: Hierarchial Display I recently ran across a sweat application that generated an org chart. What is so

RE: Hierarchial Display

2001-01-08 Thread Jason Powers
I'm pretty sure that the DC CFUG had a presentation on bitmasks and hierarchies, with some custom tags included. It should be available at www.figleaf.com and look under June 2000 CFUG. Jason Powers Fig Leaf Software 202-797-5440 -Original

Visual Source Safe

2001-01-08 Thread Nathan Stanford
Has anyone used Visual Source Safe with ColdFusion and multiple programmers? Nathan Stanford www.cfitpsplus.com Free CF e-zine Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

CFHEADER

2001-01-08 Thread Peter Benoit
It seems the following won't work, well in at least IE5.5. CFHEADER NAME="Content-Disposition" VALUE="attachment;filename=#attributes.fname#" CFCONTENT TYPE="application/pdf" FILE="#fnp#" It instead opens the page up for download instead of the file. So lets say I have peter.pdf as my

RE: Hierarchial Display

2001-01-08 Thread Joe Sheble aka Wizaerd
Wat do you mean by a tree structure? At 05:51 PM 1/8/01 +, you wrote: Why not get the custom tag to populate a tree structure instead of a query? Then you can write another recursive custom tag to display the data much more easily. -Original Message- From: Joe Sheble aka Wizaerd

RE: Visual Source Safe

2001-01-08 Thread Rye Smith
Nathan, We have multiple Developers using Visual Source Safe with Cold Fusion. are you having a problem or Question? -Rye Ininet Inc. -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Monday, January 08, 2001 1:35 PM To: CF-Talk Subject: Visual Source Safe

  1   2   3   >