Re: Table structure

2000-05-18 Thread Nick Slay
From an efficient database design point of view, you'd want to look at using a two-table method for this, for example InvoiceHeader Table InvoiceNumber InvoiceDate Customer InvoiceItem Table InvoiceItemId InvoiceNumber ProductCode

Re: Capturing fields into variables was: (blank)

2000-05-18 Thread Dick Applebaum
When you submit a form, all data in that form will be available in variables whose names correspond to the name of the field: FORM INPUTNAME="My_Number" TYPE="text" SIZE="20" TEXTAREA NAME="My_Text" ROWS="5" COLS=20"/TEXTAREA INPUTNAME="My_Action"

RE: JS to CF

2000-05-18 Thread vincy
Aidan, Thanks ...I'll give it a try! vince At 09:32 AM 5/18/00 +0100, Aidan Whitehall wrote: I've got a text box with a number in it ... Now I want a CF variable to pick up that number. How do I go about doing that ?? on page1.cfm ... FORM ACTION="page2.cfm"... INPUT TYPE="text"

::: Recommendation for ColdFusion Books :::

2000-05-18 Thread spadea ho
Hi Guys! Sorry to bother you with such a boring question, but I had to ask to save myself some precious time. Does anyone of you'd gone through any great books on ColdFusion (preferably ver. 4.5) that you would recommend to newbies/intermediate programmers like myself? Hope you guys have some

RE: ::: Recommendation for ColdFusion Books :::

2000-05-18 Thread Edward Chanter
Ben's books are fantastic, he's saved me about nine hours and a whole lot of lost hair Details are @ http://www.forta.com/ I think. : -Original Message- : From: spadea ho [mailto:[EMAIL PROTECTED]] : Sent: Thursday, May 18, 2000 11:52 AM : To: [EMAIL PROTECTED] : Subject:

Re: ::: Recommendation for ColdFusion Books :::

2000-05-18 Thread spadea ho
Wow, am I impressed with the ratings that he had at Amazon... Thanks Edward for the tip. I will try to get it in Singapore. Cheers, spadea... AudioLoad.com "AudioLoad your music Today!" http://www.audioload.com - Original Message - From: Edward Chanter

Re: Lazy Application

2000-05-18 Thread Dave Hannum
There is a CFX_Sleep tag . . . Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED] (740) 597-2524 - Original Message - From: aslam bajaria [EMAIL

Re: Statistics Tags

2000-05-18 Thread Tom Nunamaker
I suppose I could dig out my copy of DELPHI and see what functions are buried in there I could wrap into a DLL The functions tag I put in the taggallery is mostly the arc- trig functions. I needed these to do some great circle type computations...but they were already in DELPHI, so why not

RE: Zip Convert

2000-05-18 Thread Jeff Beer
Told you the web site blows.. ack - it looks like it's completely gone this time. It's on someone elses server so i can't do much right now. When I get home from work tonight I'll move the zip stuff to another server. My apologies for the problems. I'll send you the tags in another e-mail -

Re: Is there a better way to do this???

2000-05-18 Thread Jeff Fongemie
Thanks! Now that you put it together for me, I did read about relational databases in Forta's book. Seems obvious now, except were did the other 2 states go? Jeff Fongemie "James Sleeman" [EMAIL PROTECTED] wrote in message E12sO5Q-ik-00@mortimer">news:E12sO5Q-ik-00@mortimer... On Wed,

Re: Form Verification

2000-05-18 Thread Beth
try cfif len(trim(form.activity)) "Andrew C. Davis" wrote: I have a form that has about 40 fields, with close to 15 being required. I've written some cfif statements (cfif form.activity is ".../cfif) which work fine, except if someone inserts a space rather than text/numbers. The logic

RE: How not to be seen ...

2000-05-18 Thread Howell, Katie
make the font color the same as the background -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 9:07 AM To: [EMAIL PROTECTED] Subject: How not to be seen ... Is there a way to cfoutput a variable, but not have it display on the web page

RE: How not to be seen ...

2000-05-18 Thread MFleming
You can output your variable inside of a HTML comment. Then when you view the source it will show up... but won't actually show in the page. Just make sure you use the HTML comment and not a CFML comment tag. * Mike Fleming CF Codeslinger "I spent my

Re: How not to be seen ...

2000-05-18 Thread Brian Mitter
You could output the variable within HTML comment tags (as opposed to CF comment tags) - Original Message - From: Todd Ashworth [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 18, 2000 2:07 PM Subject: How not to be seen ... Is there a way to cfoutput a variable, but not

Re: How not to be seen ...

2000-05-18 Thread Ben Lowndes
Put it in a regular HTML comment e.g: CFOUTPUT !-- #MyVar# -- /CFOUPUT Ben. - Original Message - From: "Todd Ashworth" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 18, 2000 2:07 PM Subject: How not to be seen ... Is there a way to cfoutput a variable, but not have it

RE: application.cfm but not for all

2000-05-18 Thread Lon Lentz
From: Adrian Cesana [mailto:[EMAIL PROTECTED]] I created a small tool bar that I want displayed in several pages, I decided to CFINCLUDE it from my application.cfm so I wouldn't have to edit so many files. Works great but, I just found a few popup pages that I DONT want it displayed in.

RE: How not to be seen ...

2000-05-18 Thread Kelly Matthews
probably even easier to just put it in an HTML (not CF) comment tag !-- -- not !--- --- those will show up when viewing source. -Original Message- From: Howell, Katie [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 8:59 AM To: [EMAIL PROTECTED] Subject: RE: How not to

RE: Database access problem

2000-05-18 Thread Tim Bahlke
If you're using Win98 there is fix at the Allaire site that might fix the problem. -- Tim Bahlke thinkcreate.com P: 336.230.0575 -Original Message-- From: "Peter Tilbrook" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: May 16, 2000 11:05:03 PM GMT Subject: RE: Database

Re: How not to be seen ...

2000-05-18 Thread Todd Ashworth
I've been using CF comment tags so much, I forgot about the plain HTML comment tags !-- -- Works like a charm :) .Todd - Original Message - From: "Howell, Katie" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 18, 2000 8:58 AM Subject: RE: How not to be seen ... | make

CFGRID cab extract redundancy - why?

2000-05-18 Thread Aron Malkine
Some people had problems setting up CFGRID due to the necessity of placing the CFIDE directory and files in the domain root of the server. My problem is that even with that directory and the files in the right place, every time someone hits a CFGRID page, it attemps to re-download the CAB file

validating credit card numbers

2000-05-18 Thread Tobe Goldfinger
You know that cute little 4 digit number that's now printed above your credit card number (on the front of the card? on the back of the card?) I understand it's more anti-fraud protection. a) Is this the standard now on all credit card types? (ie Visa, MC, Amex, Discover) b) Can I expect

Re: Will the last person leaving Cold Fusion please turn out thelights?

2000-05-18 Thread fuseware.com
And I didn't see Linux in the lineup of Supportd OSs either I think there's a few people running that server setup these days isn't there? [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Unless you consider the fact that Apple has a bad habit of not

RE: Form Verification

2000-05-18 Thread Russell, Bonnie
you might try something like this... INPUT SIZE= 30 NAME= "fromemail" MAXLENGTH=60 VALUE= "#EDIT.fromemail#" INPUT TYPE="Hidden" NAME="fromemail_required" VALUE="Email may not be left blank." the 2nd input causes the first to be required. Good Luck Bonnie AGS

RE: How not to be seen ...

2000-05-18 Thread Stanislav Maximov
just put it into the html comment block !-- cfoutput#YourVar#/cfoutput -- -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 5:07 PM To: [EMAIL PROTECTED] Subject: How not to be seen ... Is there a way to cfoutput a variable, but not

Newbie Forta Question

2000-05-18 Thread Bridget Corkery
I'm just getting started with CF. I have built simple queries in CF, but basically have just touched the surface of it's capabilities. I am wondering if I should go ahead and purchase Forta's 4.0 Web Application Construction Kit, or if anyone has heard of a newer version for 4.5. I have worked

Re: validating credit card numbers

2000-05-18 Thread Chris Tazewell
Well I've never heard of it and my card doesn't seem to have anything fitting that description, so I'd say it's probably not standard. Nothing like an example to answer a question. Regards Taz - Original Message - From: "Tobe Goldfinger" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Wherefor art thou, CGI?

2000-05-18 Thread Todd Ashworth
OK .. this is the last one for a while .. I promise ;) Anyone know where I can get a complete list of those 'CGI' variables? CGI.remote_addr, etc? .Todd -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe

RE: Newbie Forta Question

2000-05-18 Thread Clint Tredway
Get his books, they will be a great resource now and in the future... -Original Message- From: Bridget Corkery [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 8:52 AM To: [EMAIL PROTECTED] Subject: Newbie Forta Question I'm just getting started with CF. I have built simple

Re: Wherefor art thou, CGI?

2000-05-18 Thread Justin MacCarthy
From the docs : Request CGI.AUTH_TYPE CGI.CONTENT_LENGTH CGI.CONTENT_TYPE CGI.PATH_INFO CGI.PATH_TRANSLATED CGI.QUERY_STRING CGI.REMOTE_ADDR CGI.REMOTE_HOST CGI.REMOTE_USER CGI.REQUEST_METHOD CGI.SCRIPT_NAME Server CGI.GATEWAY_INTERFACE CGI.SERVER_NAME CGI.SERVER_PORT CGI.SERVER_PROTOCOL

RE: Newbie Forta Question

2000-05-18 Thread Bert Dawson
I would buy it. ...er... I _did_ buy it ps If you're out there Ben, how's the spectra bible coming along? Bert Dawson [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] www.redbanner.com http://www.redbanner.com tel: 020 7456 0240 fax: 020 7456 0241 -Original Message- From: Bridget

RE: Mail spool not sending

2000-05-18 Thread Kelly Matthews
Well i know when ever we bring down our exchange server or make changes to it it cuts the connection between CF and the mail server and I have to RESTART CF Services in order for it to connect again. Try stopping and starting your CF services and then send a test mail and see if it goes thru. The

Re: Don't let the door hit you on the way out.

2000-05-18 Thread Kevin Merker
I thought I heard that Allaire was working on a Java CF API, it makes a lot of sense. Was I mistaken? KM [EMAIL PROTECTED] wrote: I was in Cambridge for training last month and there were Java Developers in the class who indicated they are developing a Java-based CF. On Wed, 17 May 2000,

Re: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-18 Thread Kevin Merker
The Mac OS X server ($499.00) is built around the Mach Kernel. Comes with (Apache Server-Mac OS GUI interface) BSD UNIX, JAVA and WebObjects. I don't know if it is the same version of WebObjects. I would assume, yes because this means you have a Apple computer. Steve Jobs is not messing around.

Re: LINK tag in Application.cfm

2000-05-18 Thread David L. Rice
Theoretically, a style sheet link should be in encapsulated within the HEAD tag, correct. In practice, I've put them in various locations within the template with no ill effect. This is one of those 'experiment until you find something that works for you' gray areas of HTML coding. David L. Rice

RE: CFLOCK Question

2000-05-18 Thread Troy Johnson
You could also declare local variables and assign them the value of the application variables. Then you wouldn't have to lock them when reading. -Original Message- From: Alex Puriche [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 17, 2000 2:02 PM To: [EMAIL PROTECTED] Subject: CFLOCK

Re: Wherefor art thou, CGI?

2000-05-18 Thread Mario Talavera
Try turning on debugging on CF server; this will list all cgi variables available for you. At 10:17 AM 5/18/00 -0400, you wrote: OK .. this is the last one for a while .. I promise ;) Anyone know where I can get a complete list of those 'CGI' variables? CGI.remote_addr, etc? .Todd

Re: Wherefor art thou, CGI?

2000-05-18 Thread Nick Slay
Do you use Studio? If so the first icon on the 'CFML Basic' toolbar shows all the CGI variables actually, it's not a definitive list... but it has most of them Nick At 10:17 18/05/00 -0400, you wrote: OK .. this is the last one for a while .. I promise ;) Anyone know where I can get a

RE: The difference between client and cookie variables

2000-05-18 Thread Dave Watts
I'm creating an application that will adapt to the client. So the first time I create a client.user that will guide to create the next time these adaptive content. Now, I was wondering what's the difference between creating: CFCOOKIE NAME="user" VALUE="userName" EXPIRES="never" and a client

cf_zip

2000-05-18 Thread Jason Egan
Anyone know where I can get my hands on the forta cf_zip tag? Thanks, je -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or

RE: Newbie Forta Question

2000-05-18 Thread Reynolds, Adam
I would actually suggest that the Mastering ColdFusion Book by Danesh is also worth reading. They have very different approaches to writing about CF. I've got friends who I've lent both books to who have stated that the Danesh book is easier going if you are starting out. The Forta books

RE: Tuning the webserver?

2000-05-18 Thread Dave Watts
My web application has been running sluggish lately, but don't see any problems reported with the CF or database server. The pages just take a long time to download - could it be the web server? It could be. You could test this by requesting non-CF pages, ideally using a load-test tool while

FICO Credit check

2000-05-18 Thread David Brown
Does anyone know of a software package that would allow me to request credit score on customers? I am trying to write an web for a mortgage company and need to know customers scores within say 3 to 5 min of their request for a loan. Thanks David Brown

Shipping Tag?

2000-05-18 Thread Lon Lentz
There was quite a bit of talk recently of a custom tag that handled UPS FedEx freight charges, among others. Since I now have use for it, can someone give me a link to its location? Lon Lentz Applications Developer - GetLists.Com DataWarehousing and List Sales - Market your lists on the

RE: concerned about verity

2000-05-18 Thread Dave Watts
I have heard from someone recently that the version of verity that coldfusion bundled with its software is a very stripped down bare-bones lite version, so much so that it will time out and crash if it has over 3,000 documents to search. This concerns me greatly because A) allaire provides

SOT: Load Test Software/CF

2000-05-18 Thread Andy Peterson
Hi All, I'm looking at the ColdFusion Performance Tuning class and was wondering where to get info/pricing on load test tools. I was also wondering if anyone has taken the Performance Tuning (vis a vis the Advanced Developement class) class and what their opinion was on it. Thanks, Andy

RE: Newbie Forta Question

2000-05-18 Thread jeff tapper
Last I heard the book should be on the shelves in the next week or so. At 03:22 PM 5/18/00 +0100, you wrote: ps If you're out there Ben, how's the spectra bible coming along? == Jeff Tapper [EMAIL PROTECTED] Senior Allaire Platform Technologist

RE: Lazy Application

2000-05-18 Thread Dave Watts
Is there a time function in CF. WhatI want to accomplish is putting the data on the screen one by one with a gap of few seconds. For example: Welcome to two seconds gap My web site! two seconds Hope two seconds you are not bored! No, you have to write all your output back to the

Re: Search Engines

2000-05-18 Thread Chris Giminez
Web Position Gold does this and a lot more. http://searchengineboost.com/webpositiongold/index.htm Chris Giminez Ok.. remedial question, but one that I can seem to find a good answer to. We do a lot of web hosting and we provide a service to our customers where we register domain names

RE: (OT) IIS and public web

2000-05-18 Thread Dave Watts
My boss wants to offer web hosting to a certain division of our clients. I know that I have been to a hundred web hosters that offer automated site set up. The way I've seen it is that a customer comes on, finds a name that isn't taken, the web server sets up a virtual directory, and set's

Re: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-18 Thread Larry C. Lyons
At the same time however, I went to the Apple site, and its a legit price. WebObjects is very powerful. At $700 and available for the Mac, NT/2000Pro, and *nix boxes, it may be a serious competition in a few months. As for going to Java, remember, CF is headed that route as well, according to

RE: Autoresponders people...just use your head

2000-05-18 Thread Braver, Ben:
Or for those of us who only get one email address at work, when you leave, Unsubscribe when you return, Subscribe works for me... -Original Message- From: Gregory Harris [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, May 17, 2000 11:11 PM To: Cold Fusion Subject: Autoresponders

Re: Statistics Tags

2000-05-18 Thread Larry C. Lyons
William, There are a couple of tags in the CF developers gallery that calculates the mean and standard deviation from a list. BTW do you mean the standard deviation of the mean or the standard error of the mean - they are two completely different animals. larry -- Larry C. Lyons EBStor.com

Re: Advice Needed - New Credit Card Gateway

2000-05-18 Thread Larry C. Lyons
I've had a lot of good experience with Authorize.net. (http://www.authorize.net/) There's a tag in the developer's gallery that works fairly well, however its written for version 2.5 of Authorize.net, but it can be quickly updated to the current version (3.0). regards, larry -- Larry C. Lyons

CFLOCATION Session Variables

2000-05-18 Thread Dave Hannum
Do Sesion Variables and CFLocaion mix? (COOKIES and CFLocation don't, I know). Is this the same type of thing because it doesn't seem to work. Thanks, Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web

Re: Not enough disk space

2000-05-18 Thread Jennifer
At 06:57 PM 5/17/00 -0600, you wrote: I'm installing ColFusion Server 4.0 Eval version, and i have a message during the installation, this:"Not enough disk space", but we have enough space on disk, could some one help to me? I'm trying to install on a different directory c:\cfusion , that is:

RE: Newbie Forta Question

2000-05-18 Thread Levi Wallach
Some of us had the pleasure of hearing Ben talk about CF last night at the CFUGorama here in DC. He actually fielded a question from someone about coming out with a 4.5 book and said that he was not planning to because of all the other books he was working on and the fact that the changes

Re: FICO Credit check

2000-05-18 Thread David E. Crawford
You will have to get into a business arrangement with one of the credit bureus, such as TransUnion or Equifax. Be forewarned, it is not as simple as it sounds, as there are multiple security issues as well as legal and finanacial issues that have to be resolved. It can be done, however, it is

Re: Wherefor art thou, CGI?

2000-05-18 Thread Todd Ashworth
lmao .. never knew that was there. I guess the moral of the story here is, RTFM .. doh! Todd - Original Message - From: "Nick Slay" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 18, 2000 10:47 AM Subject: Re: Wherefor art thou, CGI? | Do you use Studio? | | If so the

Crazy, Crazy Prob w/ simple Fusebox app

2000-05-18 Thread [ a l l e n g ]
I'm at a loss as to what else to check for with the problem. The problem seemed to randomly appear out of no where yesterday. I have a very simple Fusebox app that allows a user to maintain a database for emailing customers. I literally copied the files from client A to client B and changed

RE: FICO Credit check

2000-05-18 Thread Marcus
Does anyone know of a software package that would allow me to request credit score on customers? I am trying to write an web for a mortgage company and need to know customers scores within say 3 to 5 min of their request for a loan. Thanks David Brown We are doing that right now for car

RE: Newbie Forta Question

2000-05-18 Thread Jennifer
I agree. I have Mastering CF and the two Forta books. I had the Forta books first and I was confused about some things. When I got the Mastering book, my questions were answered. If you have to learn ColdFusion as quickly as possible but not as thoroughly as possible, Mastering is perfect. But

RE: Load Test Software/CF

2000-05-18 Thread Dave Watts
I'm looking at the ColdFusion Performance Tuning class and was wondering where to get info/pricing on load test tools. There are three big players in the load-test tool market: Segue, Mercury and RSW. There aren't any side-by-side comparisons of their products that I've seen. Your best bet is

RE: Load Test Software/CF

2000-05-18 Thread mherbene
Here is a listing of load test tools: http://www.softwareqatest.com/qatweb1.html -Original Message- From: Andy Peterson [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 11:14 AM To: [EMAIL PROTECTED] Subject: SOT: Load Test Software/CF Hi All, I'm looking at the ColdFusion

Re: OT: Search Engines

2000-05-18 Thread Althea Turner
Althea Turner OHSU WEB SERVICES [EMAIL PROTECTED] [EMAIL PROTECTED] 05/17 6:54 PM Ok.. remedial question, but one that I can seem to find a good answer to. We do a lot of web hosting and we provide a service to our customers where we register domain names for them and then list them with

Encryption

2000-05-18 Thread Chad
Is there anyway to Encrypt a CF action file so people cannot read the code? -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or

RE: CFLOCATION Session Variables

2000-05-18 Thread Double Down, Inc
Yes they do mix. Set the session variables before your first CFLOCATION TIA DDINC -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 9:55 AM To: CF-Talk Subject: CFLOCATION Session Variables Do Sesion Variables and CFLocaion mix? (COOKIES

RE: where are these cookies coming from?

2000-05-18 Thread Anthony Israel-Davis
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFC0F3.29974F52 Content-Type: text/plain; charset="iso-8859-1" Are you using client variables? It's possible that they are

RE: dynamic query

2000-05-18 Thread Dave Watts
I am trying something which may not be allowed. cfset test = "where (City LIKE '#city#' or State LIKE '#state#' or Availability = '#SquareFeet#')" CFQUERY NAME="search" Datasource="sqft" Select * from property #test# /CFQUERY I am getting a 37000 syntax

Help with Session IDs

2000-05-18 Thread Falconer, Dana
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFC0FE.42D40309 Content-Type: text/plain Help Am I missing something? I thought that the sessionIDs were assigned uniquely to each

RE: Installation path...

2000-05-18 Thread Hoffman, Joe (CIT)
How about d:\progra~1\cfusion ? ... if progra~1 if the MS-DOS 8.3 directory name? Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology Division of Computer System Services -Original Message- From: Luis [mailto:[EMAIL PROTECTED]] Sent:

RE: Perforce and Cold Fusion

2000-05-18 Thread Scott Rowe
You have to switch back and forth, but I've never found it to be a problem and it's a much better program than M$'s Visual Somewhat Safe. And you can easily configure it so that when you check it out for edit, you click on it and it opens in Studio, so I never really use the studio dir.

Re: Cold Fusion hosting on unix?

2000-05-18 Thread Rey Bango
Doug, I believe VirtualScape now hosts CF on Redhat. Rey.. - Original Message - From: "Douglas Jordon" [EMAIL PROTECTED] To: "Cold Fusion List" [EMAIL PROTECTED] Sent: Thursday, May 18, 2000 1:23 PM Subject: Cold Fusion hosting on unix? Hi all, Does anyone know of an ISP or web

RE: SQL Create Table Statement

2000-05-18 Thread Troy Johnson
DROP TABLE TABLENAME CASCADE CONSTRAINTS ; CREATE TABLE TABLENAME ( COL1 NUMBER(3) NOT NULL, COL2 VARCHAR2(2), COL3 VARCHAR2(30) DEFAULT USER NOT NULL, UPDATEDBY VARCHAR2(30) DEFAULT USER NOT NULL, DTCREATED DATE

CFOUTPUT question

2000-05-18 Thread Chad
Im doing a CFOUTPUT from a database and the data just repeats down one long column in the table... Is there any way to repeat the data into a two column table? -- Archives: http://www.eGroups.com/list/cf-talk To

Re: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-18 Thread Kevin Merker
Isn't NT still at the heart a DOS core? KM Richard Fantini wrote: I'm certainly not a M$ fan, but that's not even close to a fair statement. All software has security holes, it just so happens Mac servers are relatively unpopular compared to NT and therefore are not an attractive target

Re: CFUG in Massachusetts?

2000-05-18 Thread Howie Hamlin
There's one in Beantown http://www.allaire.com/developer/cfugapps/cfug_grouplist.cfm Howie Hamlin -- inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668 www.CoolFusion.com Please vote for iMS in the Most

RE: SQL Create Table Statement

2000-05-18 Thread Dave Phillips
Katrina, Here's a simple little table with an incrementing primary key that increments by 1 and starts at 1: CREATE TABLE MyTable(MTID int IDENTITY(1,1), fname varchar(25), lname varchar(35), state char(2), timeentered datetime, notes text, CONSTRAINT pk_mtid PRIMARY KEY(mtid)) Hope this

Re: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-18 Thread Kevin Merker
Wouldn't this be a good reason just the shear numbers of hackers working against MS platform not to us it. I haven't heard of any other platform that has been targeted using VB like what happened with the I LOVE YOU script through the address book. The fact is that there are now other OS's to

Help!

2000-05-18 Thread aslam bajaria
Hi All, I have a problem. The way the system works right now at my company is that the operator opens up a customer's account using the customer id and gives the customer a license number. The license number is generated automatically. Each time a license number is assigned, the file having

Re: CFUG in Massachusetts?

2000-05-18 Thread Nick Loretta Pioch
Here's a list of CFUGs: http://allaire.com/developer/cfugapps/cfug_grouplist.cfm If you want the Boston area one, you'll find that at http://www.cfugboston.org (didn't know if connecticut would be closer or not) I went there about a month or so ago and signed up, but haven't heard anything

Is anyone interested....

2000-05-18 Thread Clint Tredway
Tomorrow morning I am going to have the first beta of a browser based database utility/code generator ready for a first release. I would like to find out if anyone would like to help me beta test it? Basically here is it what it does at the moment. Firt off this is only working with MSSQL

Re: Newbie Forta Question

2000-05-18 Thread Kevin Merker
Get this one, when I was totally new to CF my first book was Mastering CF by Danesh. I thought it sucked at the time because demo code was buggy an I didn't have enough of the basic understanding of CF. Now that I have reached the next plateau of understanding the book moves right with Forta's

Re: CFPOP Delivery Receipt

2000-05-18 Thread Howie Hamlin
Delivery receipts are part of the SMTP protocol and not POP. You use SMTP for sending mail and POP to retrieve mail that is already delivered to your mailbox. Delivery receipts are outlined in RFC2298 (http://www.imc.org/rfc2298). As per the RFC the sending of a delivery receipt is dependent

Re: Newbie Forta Question

2000-05-18 Thread Yvette Ingram
Just to add to this, Mastering ColdFusion 4.5 is due out this month I believe. Yvette Ingram ColdFusion Programmer HWG-TA, ColdFusion 4 Email: [EMAIL PROTECTED] or [EMAIL PROTECTED] ICQ: 21200397 - Original Message - From: Reynolds, Adam [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

RE: CFUG in Massachusetts?

2000-05-18 Thread Duane Boudreau
There is the BCFUG - Boston, run by Steve Casco http://www.cfugboston.org/ goto http://www.allaire.com/developer/cfugapps/cfug_grouplist.cfm for the entire list Duane Boudreau, Project/Beta Manager, eMPower Director, Web Technologies Ektron, Inc. http://www.ektron.com 5 Northern Blvd, Suite 6

RE: where are these cookies coming from?(repeat)

2000-05-18 Thread Anthony Israel-Davis
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFC10C.50FCF86C Content-Type: text/plain; charset="iso-8859-1" Sorry for the double post - it was my first and I didn't realize

Re: Encryption

2000-05-18 Thread Steve Reich
Is there anyway to Encrypt a CF action file so people cannot read the code? Yes, you can... go to c:\cfusion\bin\cfcrypt.exe (or cfencode.exe for version 4.5x). If you click on it in the Windows environment, you will get a popup telling you the variables you need to run at the command prompt

RE: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-18 Thread Gary McNeel, Jr.
Actually, to my knowledge, only a few US Army servers have moved. If you have more information or statistics, I would be interested. http://www.maccentral.com/news/0003/15.army.shtml Granted, NT has vulnerabilities. Many of them. But I think the point is being missed here. The new Mac OS X will

RE: Passing a formfield along a multi-form page

2000-05-18 Thread Troy Johnson
Put the text you want to display into a variable. Pass the variable from page to page. When you want to display it, assign the variable to the textarea. -Original Message- From: Britta Wingenroth [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 11:18 AM To: [EMAIL PROTECTED]

RE: Newbie Forta Question

2000-05-18 Thread Kristian D. Seaney
IDG has the cold fusion for dummies book out as well. It is good, has some cute tips and has ten custom tags in it that are fun to do. Kris Seaney -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 9:46 AM To: [EMAIL PROTECTED]

RE: image database

2000-05-18 Thread William Adamsen
What is the OS, are you encountering issues with that many files in one directory? We've encountered limits in NT around 12,000 and I'm curious if you're seeing a correlation between number of files and performance degradation? -- William Adamsen Senior Consultant Syntegra (USA), Inc. Direct:

Re: Web Servers

2000-05-18 Thread Howie Hamlin
The server type is usually in the HTTP headers. You can download our freeware http analyzer (http://www.coolfusion.com/http.htm) and you will see the headers in the display. HTH, Howie Hamlin -- inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668 www.CoolFusion.com

Pesky dollar format

2000-05-18 Thread Cyrill Vatomsky
Hi, All I am working with MS Access DB that has a currency datatype field. I retrieve the data into the form: cfinput type="Text" name="Rate" value=#NumberFormat(Rate, "$99.99")# It displays fine with the "$" where it is supposed to be, but when I submit the form (without

Re: Could request alleviate locking concerns?

2000-05-18 Thread David Cummins
Jeez Louise, I've never heard of the Request scope. Is there anywhere that has a definitive list of all the scopes? David [EMAIL PROTECTED] wrote: Just wanting some opinions on using the request scope to hold "copies" of application and server variables (only the necessary ones, not an

RE: Web Servers

2000-05-18 Thread Dave Watts
Is there a way to tell what another web site is running on? What type of server it is? By default, web servers identify themselves in their HTTP response headers. You can use telnet or netcat to talk directly to the server, and read the header. There's a tool called HTTP Analyzer which makes

RE: Wherefor art thou, CGI?

2000-05-18 Thread Nick Slay
(For the record, WHEREFOR means "why" or "for which reason", it does not mean "where" :-) ) h... so, Romeo, Romeo wherefor art thou Romeo... means... 'why are you Romeo? :^) -- Archives:

RE: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-18 Thread Owens, Howard
While I agree with David that NT can be, when configured properly, a highly secure server. I must disagree with his assessment that current Mac servers have their own "gross security holes." From a security standpoint, the Mac OS is the most secure OS there is. That's been proven time and time

Re: CFOUTPUT question

2000-05-18 Thread Chad
I looked at my question and there was a typo. I dont want to repeat my data... i want to 'word wrap it' to another column.. I have been reading, and researching.. what about using MAXROWS="10". Then do another CFOUTPUT to the second column with STARTROW="11" Is this going to confuse

Re: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-18 Thread Howie Hamlin
No. You're thinking of Windows 1.0 to 3.x. Howie Hamlin -- inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668 www.CoolFusion.com Please vote for iMS in the Most Innovative category here: ***

RE: Will the last person leaving Cold Fusion please turn out the lights?

2000-05-18 Thread Duane Boudreau
WinNT is not but Win9x is. NT is a true 32bit OS, while Win9x is really a Win32 shell sitting on top of a 16 bit core Duane Boudreau CFExperts.Com -Original Message- From: Kevin Merker [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 18, 2000 11:21 AM To: [EMAIL PROTECTED] Subject: Re:

  1   2   >