Re: Alternative To SQL Server Enterprise Manager

2001-01-03 Thread David Shadovitz

Beg pardon?  Is this in relation to the Victoria's Secret job?

On Wed, 03 Jan 2001 "Wallace  Randall" <[EMAIL PROTECTED]>
writes:
> I am interested in your tool.
> 
> Wally Randall
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Update to Null

2001-01-03 Thread David Shadovitz

Well, it worked.  I guess either my brain or my PC was slow in getting
back from vacation.
Thanks to those who wrote.
-David

On Tue, 02 Jan 2001 22:32:42 -0800 David Shadovitz <[EMAIL PROTECTED]>
writes:
> Hmm.  I'm using Oracle.  I thought I tried this just before I escaped
> from my office today.  I'll try it again in the morning.
> Thanks.
> -David
> 
> On Tue, 02 Jan 2001 22:27:17 -0600 [EMAIL PROTECTED] (Rick Lamb)
> writes:
> >UPDATE Employees
> >SET Age = NULL
> >WHERE Id = 2
> > 
> > This has always worked fine for me using MS SQL 7.0 and MS Access.
> > 
> > Rick
> > 
> > -Original Message-
> > From: David Shadovitz [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, January 02, 2001 9:31 PM
> > To: CF-Talk
> > Subject: OT: Update to Null
> > 
> > 
> > Is it possible to UPDATE the value of a numeric field to NULL?
> > 
> > Here's the scenario, which must be common:
> > 
> > The records of the Employees database table are displayed in an 
> HTML
> > table, with an Edit and Delete button in each row.  The user 
> clicks 
> > Edit
> > to display a particular record in an editable form.  If the user 
> > clears
> > the Age field and submits the form, what would the SQL UPDATE 
> > statement
> > look like?
> > 
> > I don't think this works:
> >UPDATE Employees
> >SET Age = NULL
> >WHERE Id = 2
> > 
> > I could test on FORM.Age and then do "SET Age = -1" if no age was
> > specified, but I'd rather not.
> > 
> > Thanks.
> > -David
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is this a job for Verity?

2001-01-03 Thread Kay Smoljak

Thanks for all your suggestions.

I will look into the Verity links - thanks Joseph - but I may end up taking
Dick's suggestion and put the content into the db. It is created and edited
by the client in a custom-written Windows program, but now that I think
about it there's no reason why I can't read in the file when the program
uploads it and store the text in the db instead of just the filename. So
simple and it was right in front of my nose the whole time!

K.

On Wed, 03 Jan 2001 08:49:51 -0800, "Joseph Thompson" <[EMAIL PROTECTED]>
wrote:

>Yes, Verity would work for you.  Verity provides a mechanism to populate
the
>Verity collection from a query.
>
>In your case, you may need to run one query to get the file name, category
>etc. from your dbase, and then combine the results with a CFFILE read
>operation and use the "QueryAddRow" function to add the contents of your
>HTML files to the query...
>
>There is a "Verity manager" script here at cfhub you can try, it will use
>the first  (HI,H2 etc) to name your documents and allow you to skip
>the step of dynamically building your query.
>
>More on Dynamic queries:
>http://cfhub.com/advanced/cfquery/index.cfm
>
>More on Verity:
>http://cfhub.com/advanced/verity/index.cfm
>
>The Verity Manager script:
>http://cfhub.com/tutorials/verity/
>
>If you have any questions about any of these links, let me know (off list)
>
>
>Subject: Is this a job for Verity?
>
>
>> Hi all,
>>
>> I have an application hosted on CFAS 4.0.1/MS SQL Server 7 which requires
>a
>> search feature for news articles. The article text for each item is
stored
>> in an external html file. The title, category, date and filename for each
>> article is stored in the db. I am kinda stumped as to how I can elegantly
>> search the full text of the articles. Could this be a job for Verity? I
>have
>> not used it before. And if it is, how can I associate the correct db
entry
>> with the text in the external file in my search results?
>>
>> Thanks for any pointers,
>> K.
__
Kay Smoljak - HTML/ColdFusion Developer - PerthWeb Pty Ltd
Internet Solutions for your business!

Level 9/105 St George's Tc - Perth - Western Australia
Ph: (08) 9226 1366 Fax: (08) 9226 1375 Mobile : 0419 949 007
Visit Perth online! : www.perthweb.com.au



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Adding and removing dates. Y21K compliant?

2001-01-03 Thread Scott, Andrew

Would it not be easier, to hold the images in a seperate directory. Then
using the cfdirectory to build an array of images for your use. I
did something similar for a slide show on another project many years ago

http://www.wildthing.iaccess.com.au/slideshow.html

regards

Andrew Scott
Senior Cold Fusion Application Developer



-Original Message-
From: Barry Smith [mailto:[EMAIL PROTECTED]]
Sent: 04 January 2001 07:30
To: CF-Talk
Subject: RE: Adding and removing dates. Y21K compliant?


That's awesome Ray. I had tried the DATEADD, since I felt it was more
elegant, but I used the PARSEDATE and just added or removed the TIMESPAN. 

I have included your code, but the only caveat I have is I still need to
have the dates formatted in "YY-MM-DD" since that is how I have named the
images and that is how they are called.

00-10-18Oct. 18, 2000
00-10-19Oct. 19, 2000
00-10-20Oct. 20, 2000
00-10-21Oct. 21, 2000
etc.

The DATEADD you wrote works great and I was able to streamline my code, but
the error still shows up for any dates above Jan. 1, 2001.

Jan 2 and Jan 3 give me odd output. It almost seems as if the DATEFORMAT on
the NEXTTOON and LASTTOON is being ignored. But the code seems to work for
all other dates.

Barry T. Smith
GlobalSight Webmaster
http://www.globalsight.com


-Original Message-
From: rayt@qsystems [mailto:rayt@qsystems]
Sent: Wednesday, January 03, 2001 11:32 AM
To: [EMAIL PROTECTED]
Subject: Re: Adding and removing dates. Y21K compliant?



New message has been posted in ColdFusion Support Conference

Forum:   Advanced Techniques
Thread:  Adding and removing dates. Y21K compliant?
Author:  Ray Thompson
Subject: Your Problem

URL: http://forums.allaire.com/DevConf/Index.cfm?Message_ID=634464


Your problem is in the format of your date. You are using DD-MM-YY which,
when processed by the ParseDateTime() function views the date a MM-DD-YY.
You also should use DateAdd() rather than adding a number, such as a
TimeSpan to a date. I changed the date format in the code and simplified the
code. It now produces the correct date.


* Accompanied HTML Code *



  



  






~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT:Anybody using CF 4.5.1 sp2 on RedHat 7.0 with Sybase 11.9.2

2001-01-03 Thread Marius Milosav

and can share some info.

I am interested in any problems, unusual setup procedures etc


Thank you
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


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: format question ... an REReplace solution

2001-01-03 Thread Brendan Avery

The ParagraphFormat() function is pretty weak, since it doesn't generally 
put the  tags in the appropriate places (i.e. at the beginning of 
paragraphs...)

I suggest the following solution using regular expressions:

 ","ALL")#>

Although, to kill the header/trailing carriage-returns/spaces I would 
suggest trimming it like so:

 ","ALL")#>

At 06:29 PM 1/3/2001 -0600, you wrote:
>But doesn't that one pick up blank lines and insert  tags where it finds
>blank lines? This example doesn't have a blank line between the text, only
>a single carriage return.
>
>At 06:04 PM 1/3/01 -0600, you wrote:
> >use the ParagraphFormat() function on the outputted text.
> >
> >Bernd VanSkiver
> >[EMAIL PROTECTED]
> >ICQ #: 916324
> >
> >
> >-Original Message-
> >From: S R [mailto:[EMAIL PROTECTED]]
> >Sent: Wednesday, January 03, 2001 6:00 PM
> >To: CF-Talk
> >Subject: format question
> >
> >
> >I have a page in which I need to display a block of text, pulled from a
> >database, with the 'returns' doing exactly what the user intended.
> >
> >For example I need it to look like this:
> >
> >This is one line.
> >Here is another.
> >And one more
> >
> >Instead of this:
> >
> >This is one line. Here is another. And one more.
> >
> >Note: This is not a textarea or form field of any sort, I already know how
> >to do that with HTMLEditFormat, but that does not seem to work for this
> >
> >Thanks
> >
> >Sal
> >
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Slightly OT: Allaire Developer Certification

2001-01-03 Thread Ben Forta

http://www.allaire.com/services/training/certification/index.cfm


-Original Message-
From: Warrick, Mark [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 8:17 PM
To: CF-Talk
Subject: Slightly OT: Allaire Developer Certification


To all Allaire Certified Developers:

If you came to me and told me you were Allaire certified, how would I verify
that you really are?  I cannot find anything on Allaire's site related to
certification.

If there's something on Allaire's site for me to read, please give me a
link.  Thanks!

---mark


--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Slightly OT: Allaire Developer Certification

2001-01-03 Thread Warrick, Mark

To all Allaire Certified Developers:

If you came to me and told me you were Allaire certified, how would I verify that you 
really are?  I cannot find anything on Allaire's site related to certification.

If there's something on Allaire's site for me to read, please give me a link.  Thanks!

---mark


--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: E-mail spooler not working

2001-01-03 Thread Pardeep Singh

I looked in there and it doesn't show any activity whatsoever. I do have
mail logging enabled, but from the log files it looks as though the spooler
doesn't even recognize CFMAIL tag activity.

Any ideas on what might cause that to occur?

- Original Message -
From: "Howie Hamlin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 7:55 AM
Subject: Re: E-mail spooler not working


> Have a look in the CF mail log file (it's in the cfusion\mail\log folder.
> There will probably be something in there that will point you in the right
> direction.
>
> 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 server
> Get yout free copy of iMS POST-SE Server from CoolFusion!
>
> - Original Message -
> From: "Pardeep Singh" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Wednesday, January 03, 2001 5:23 AM
> Subject: Re: E-mail spooler not working
>
>
> > The e-mail spooler on CF 4.5 SP2 isn't working. Any ideas what the cause
> > could be?
> >
>
>
>
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Alternative To SQL Server Enterprise Manager

2001-01-03 Thread Wallace Randall

I am interested in your tool.

Wally Randall



~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Distribute cf site via cd rom

2001-01-03 Thread Jennifer

At 04:48 PM 1/3/01 -0800, you wrote:
>Hi,
>
>I'm looking for options (preferably low-cost) when
>distributing a a cf based site on a promo cd. Is ther
>some type of software that will do this? What happened
>to CF_Anywhere? Is it still around, and would it be
>what I need?

I'm not sure that I understand the question but I may have an answer 
anyway. Would an offline browsing software program be able to do it? There 
are programs available that create offline browsing versions of sites. The 
one I've used doesn't handle forms (understandably) but if you can pass 
everything in a URL you might be able to pull this off with an offline 
browser. Assuming I understand what you want to do. I've made 
offline-browsable catalog with this kind of software before and it handles 
URL variables very nicely.


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF vs. Lotus Domino App Server

2001-01-03 Thread Chasmo

Hi All;

I recently built a prototype B2B project-management app for a 
client in CF. He's now in his first round of funding and is getting all 
kinds of "suggestions," the most prominent being that the actual 
release be built with Domino App Server. 

Does anyone have any knowledge of how the two app servers 
compare, or possibly a good Web link on Domino's tech stuff? I 
checked with the standard Lotus sites, but only get the standard 
industry speak ("robust, extendable platform," "leverage your 
business" blah blah).

Many thanks,

Chasmo
[EMAIL PROTECTED]


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Distribute cf site via cd rom

2001-01-03 Thread Kevin Miller


Not of immediate help, but CF 5 will include the ability to compile
your CFML.  What I am not sure of is what it'll compile to: native code,
pcode, java, etc.

Kevin

>>> [EMAIL PROTECTED] 01/03/01 04:48PM >>>
Hi,

I'm looking for options (preferably low-cost) when
distributing a a cf based site on a promo cd. Is ther
some type of software that will do this? What happened
to CF_Anywhere? Is it still around, and would it be
what I need?

Thanks in advance,
Andy
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Distribute cf site via cd rom

2001-01-03 Thread cf kaizen

Hi,

I'm looking for options (preferably low-cost) when
distributing a a cf based site on a promo cd. Is ther
some type of software that will do this? What happened
to CF_Anywhere? Is it still around, and would it be
what I need?

Thanks in advance,
Andy
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Anybody using interested in helping?

2001-01-03 Thread Jennifer

At 07:09 PM 1/3/01 -0500, you wrote:
>Jennifer,
>
>I am not suggesting by anything that I said that there is anything wrong
>with the product or its developer and I certainly don't want anyone to infer
>that from my message. I'm just hoping someone can help me out getting things
>set up properly. I suspect that there is something easy that I am
>overlooking - at least I hope that is the case.

I'm not saying that anything is wrong with the developer or whatnot either. 
I'm just saying that if you sell something you need to back it up and my 
first impression was that it wasn't backed up. Documentation is really hard 
for programmers to write-- that's why there are people whose only job is to 
write documentation. But if people can't even get your product set up, you 
need to help them. That's what I'm saying. Clearly there is another level 
of tech support necessary for this product since it allows you to make 
modifications and stuff but that doesn't seem to be what you need.

> > At any rate, go back to the
> > product page on their site and hit the "Technical Support Info." button
> > near the bottom.
>
>Not sure where you are looking.

http://www.iautomated.com/store/default.cfm?iid=13 at the bottom there is a 
"Technical Support Info." button. Unfortunately it is a form input and 
submits to the next page so it's a issue to link to the next page.

Have you looked at the FAQ?
http://www.iautomated.com/support/faqs/default.cfm?fid=1

>  There is indeed a tech support form at
>http://www.iautomated.com/support/forms/support.cfm . But you have to enter
>your product license or support subscription key. If you did not purchase a
>support subscription with your product, you have to purchase a separate
>support subscription. Entering a product license key that was purchased
>without the support option just returns the same form saying "support
>subscription not found" (or something of that nature).
>
>I know from experience that providing free support with even the simplest of
>apps can just absolutely chew up a developers' time (and therefore profit).
>So I am not arguing with the right of the developer to charge for support.

Yes, but there are other solutions to that problem, like creating better 
documentation or making the install process easier.

>Thanks very much for your note! Maybe there is another support form on the
>site that I have overlooked that does allow me to get a few simple questions
>answered?

It seems not. I just looked around in their support department and I didn't 
see anything there that would let you do it. There is another form but it 
apparently doesn't submit to a person who can help you. Try sending an 
email to the info address listed at the bottom of the site: 
[EMAIL PROTECTED]

But here is the text of the page I was talking about:

CF_HTMLAREA_ONE WYSIWYG html form tag,
   single domain version

   Technical Support Info.

   Support is a crucial element of any 
software product.
   Internet Automated recognizes this, and 
we will always
   strive to provide the most timely and 
accurate support
   possible.  Preference is given to users 
who have purchased
   technical support, but we will also 
answer owners of our
   software who have not purchased support, 
as time permits.

   Email support of this software extends 
to the developer
   only.  Base support includes only errors 
involved in
   deploying our software product in a 
local application.

   Responses to technical support requests 
are normally
   made within 1 business day, allowing for 
time zone
   differences (based upon North American 
Pacific Coast
   time).

   Base support does not include the following:

  1.questions regarding the software 
code or modification
thereof
  2.errors involved in deploying our 
software product in a
distributed application
  3.under no circumstance is support 
extended to the users
of software developed using our 
products.  The
developer is responsible for all 
end-user support, and
in no case will Internet Automated 
Inc. or its supporting
agents respond to technical support 
requests beyond
 

RE: format question

2001-01-03 Thread Jann VanOver

If you're displaying it as HTML, try the HTML  tag around the output.
That will retain line breaks

-Original Message-
From: Jennifer [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 4:30 PM
To: CF-Talk
Subject: RE: format question


But doesn't that one pick up blank lines and insert  tags where it finds 
blank lines? This example doesn't have a blank line between the text, only 
a single carriage return.

At 06:04 PM 1/3/01 -0600, you wrote:
>use the ParagraphFormat() function on the outputted text.
>
>Bernd VanSkiver
>[EMAIL PROTECTED]
>ICQ #: 916324
>
>
>-Original Message-
>From: S R [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, January 03, 2001 6:00 PM
>To: CF-Talk
>Subject: format question
>
>
>I have a page in which I need to display a block of text, pulled from a
>database, with the 'returns' doing exactly what the user intended.
>
>For example I need it to look like this:
>
>This is one line.
>Here is another.
>And one more
>
>Instead of this:
>
>This is one line. Here is another. And one more.
>
>Note: This is not a textarea or form field of any sort, I already know how
>to do that with HTMLEditFormat, but that does not seem to work for this
>
>Thanks
>
>Sal
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Calling another page

2001-01-03 Thread Dylan Bromby

you can see hidden fields in the source as well as the NAME values for all
field elements. you could still do a POST or GET passing in FORM values.

i'm curious, can someone post the limitations of using HTTP_REFERER? i don't
just mean a casual "not all browsers support it". i'd like to see if
someone's got this documented. once you take multple versions of Netscape
and IE into account, is there any ONE browser that holds greater than 1%
market share? or 2%? for me, my clients' web stats show that over 99% of
their sites are accessed my Netscape or IE.

-Original Message-
From: Jeffry Houser [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 4:26 PM
To: CF-Talk
Subject: Re: Calling another page



  Why not just enclose the whole page in an if statement?  Make sure you
name
your submit button something unique.

 
   Your code here

You got to this page in error.


  You could do this with any field on the form, it doesn't have to be the
submit
button.  Perhaps a hidden field, entitled 'FormName' with the value A?

   If anyone wants to jump in with a way to check the name of the form on
the
submitting page, now would be the time.  I've seen it accessed (via
javascript)
on the current page, but never on the page it submits to.


Kevin Miller wrote:

> HTTP_Referer is a client-supplied, optional element.  How widely is it
> implemented?  At the very least, you might want to make some contingency
> for the value being blank.
>
> Regards,
>
> Kevin
>
> >>> [EMAIL PROTECTED] 01/03/01 03:44PM >>>
> use HTTP_REFERER and make sure it's page A or don't execute page B.
>
> -Original Message-
> From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 03, 2001 2:55 PM
> To: CF-Talk
> Subject: Calling another page
>
> Can someone give me some advice here please.
>
> I have a form called A where the action template is called B. How can
> I
> ensure that B can only be executed by clicking the submit button on A?
>
> TIA!!!
>
> 
> Kevin Parker
> Manager, Web Services
> Service and Communication
> WorkCover Corporation
>
> [EMAIL PROTECTED]
> www.workcover.com
>
> ph:   +61 8 82332548
> fax:  +61 8 82332000
> mob: 0418 800 287
> 
>
>

> This e-mail is intended for the use of the addressee only. It may
> contain
> information that is protected by legislated confidentiality and/or is
> legally privileged. If you are not the intended recipient you are
> prohibited
> from disseminating, distributing or copying this e-mail. Any opinion
> expressed in this e-mail may not necessarily be that of the WorkCover
> Corporation of South Australia. Although precautions have been taken,
> the
> sender cannot warrant that this e-mail or any files transmitted with it
> are
> free of viruses or any other defect.
> If you have received this e-mail in error, please notify the sender
> immediately by return e-mail and destroy the original e-mail and any
> copies.
>

>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Calling another page

2001-01-03 Thread Jeffry Houser


  Why not just enclose the whole page in an if statement?  Make sure you name
your submit button something unique.

 
   Your code here

You got to this page in error.


  You could do this with any field on the form, it doesn't have to be the submit
button.  Perhaps a hidden field, entitled 'FormName' with the value A?

   If anyone wants to jump in with a way to check the name of the form on the
submitting page, now would be the time.  I've seen it accessed (via javascript)
on the current page, but never on the page it submits to.


Kevin Miller wrote:

> HTTP_Referer is a client-supplied, optional element.  How widely is it
> implemented?  At the very least, you might want to make some contingency
> for the value being blank.
>
> Regards,
>
> Kevin
>
> >>> [EMAIL PROTECTED] 01/03/01 03:44PM >>>
> use HTTP_REFERER and make sure it's page A or don't execute page B.
>
> -Original Message-
> From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 03, 2001 2:55 PM
> To: CF-Talk
> Subject: Calling another page
>
> Can someone give me some advice here please.
>
> I have a form called A where the action template is called B. How can
> I
> ensure that B can only be executed by clicking the submit button on A?
>
> TIA!!!
>
> 
> Kevin Parker
> Manager, Web Services
> Service and Communication
> WorkCover Corporation
>
> [EMAIL PROTECTED]
> www.workcover.com
>
> ph:   +61 8 82332548
> fax:  +61 8 82332000
> mob: 0418 800 287
> 
>
> 
> This e-mail is intended for the use of the addressee only. It may
> contain
> information that is protected by legislated confidentiality and/or is
> legally privileged. If you are not the intended recipient you are
> prohibited
> from disseminating, distributing or copying this e-mail. Any opinion
> expressed in this e-mail may not necessarily be that of the WorkCover
> Corporation of South Australia. Although precautions have been taken,
> the
> sender cannot warrant that this e-mail or any files transmitted with it
> are
> free of viruses or any other defect.
> If you have received this e-mail in error, please notify the sender
> immediately by return e-mail and destroy the original e-mail and any
> copies.
> 
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Anybody using interested in helping?

2001-01-03 Thread Jon Hall

Well I played with it awhile back and got the free version working without
any problems. Anyway I'll just copy my code below, make of it what you will
..
This is the url of it working:
http://216.54.222.28/htmlarea_lite/testform.cfm

This is the code for the page:





 Untitled





#field1#




Help
http://216.54.222.28/htmlarea_lite/inc">

http://216.54.222.28/htmlarea_lite/inc"
 NAME="mytest"
 FIELDNAME="field1"
 CONTENTS="#field1#">

 







jon
- Original Message -
From: "Paul Sinclair" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 5:30 PM
Subject: Anybody using  interested in helping?


> I purchased the single domain version of htmlarea_one from
> www.iautomated.com and am having problems getting it configured and
working
> in forms. I made the mistake of not purchasing the support option
> (additional $50.00) since I figured this was an easy piece to configure. I
> am getting all sorts of errors and rather than spend $100 now (price of
> support doubles if not purchased with the product) I thought I would first
> check to see if anyone here on the list has used this and ran into the
same
> problems I am having.
>
> I am not running down the product - I'm sure once it is configured it will
> perform as advertised. But the configuration/setup instructions could use
> some tweaking.
>
> If anyone is using this tag successfully, I'd love to run a few of my
issues
> by you. Send mail offlist unless deemed to be suitable for list
discussion.
>
> Regards,
> Paul Sinclair
>
>
>
>
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: format question

2001-01-03 Thread Jennifer

But doesn't that one pick up blank lines and insert  tags where it finds 
blank lines? This example doesn't have a blank line between the text, only 
a single carriage return.

At 06:04 PM 1/3/01 -0600, you wrote:
>use the ParagraphFormat() function on the outputted text.
>
>Bernd VanSkiver
>[EMAIL PROTECTED]
>ICQ #: 916324
>
>
>-Original Message-
>From: S R [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, January 03, 2001 6:00 PM
>To: CF-Talk
>Subject: format question
>
>
>I have a page in which I need to display a block of text, pulled from a
>database, with the 'returns' doing exactly what the user intended.
>
>For example I need it to look like this:
>
>This is one line.
>Here is another.
>And one more
>
>Instead of this:
>
>This is one line. Here is another. And one more.
>
>Note: This is not a textarea or form field of any sort, I already know how
>to do that with HTMLEditFormat, but that does not seem to work for this
>
>Thanks
>
>Sal
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Calling another page

2001-01-03 Thread paul smith

Try HTTP_REFERER instead (I know it's mis-spelled)

At 06:08 PM 1/3/01 -0500, you wrote:
>test for the HTTP_REFERRER variable value.
>
>~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 Message-
>From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, January 03, 2001 5:55 PM
>To: CF-Talk
>Subject: Calling another page
>
>
>Can someone give me some advice here please.
>
>I have a form called A where the action template is called B. How can I
>ensure that B can only be executed by clicking the submit button on A?
>
>TIA!!!
>
>
>
>Kevin Parker
>Manager, Web Services
>Service and Communication
>WorkCover Corporation
>
>[EMAIL PROTECTED]
>www.workcover.com
>
>ph:   +61 8 82332548
>fax:  +61 8 82332000
>mob: 0418 800 287
>
>
>
>
>
>
>This e-mail is intended for the use of the addressee only. It may contain
>information that is protected by legislated confidentiality and/or is
>legally privileged. If you are not the intended recipient you are prohibited
>from disseminating, distributing or copying this e-mail. Any opinion
>expressed in this e-mail may not necessarily be that of the WorkCover
>Corporation of South Australia. Although precautions have been taken, the
>sender cannot warrant that this e-mail or any files transmitted with it are
>free of viruses or any other defect.
>If you have received this e-mail in error, please notify the sender
>immediately by return e-mail and destroy the original e-mail and any copies.
>
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Anybody using interested in helping?

2001-01-03 Thread Paul Sinclair

Jennifer,

I am not suggesting by anything that I said that there is anything wrong
with the product or its developer and I certainly don't want anyone to infer
that from my message. I'm just hoping someone can help me out getting things
set up properly. I suspect that there is something easy that I am
overlooking - at least I hope that is the case.

> At any rate, go back to the
> product page on their site and hit the "Technical Support Info." button
> near the bottom.

Not sure where you are looking. There is indeed a tech support form at
http://www.iautomated.com/support/forms/support.cfm . But you have to enter
your product license or support subscription key. If you did not purchase a
support subscription with your product, you have to purchase a separate
support subscription. Entering a product license key that was purchased
without the support option just returns the same form saying "support
subscription not found" (or something of that nature).

I know from experience that providing free support with even the simplest of
apps can just absolutely chew up a developers' time (and therefore profit).
So I am not arguing with the right of the developer to charge for support.

Thanks very much for your note! Maybe there is another support form on the
site that I have overlooked that does allow me to get a few simple questions
answered?

Best regards,
Paul Sinclair


> -Original Message-
> From: Jennifer [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 03, 2001 6:29 PM
> To: CF-Talk
> Subject: Re: Anybody using  interested in helping?
>
>
> At 05:30 PM 1/3/01 -0500, you wrote:
> >I purchased the single domain version of htmlarea_one from
> >www.iautomated.com and am having problems getting it configured
> and working
> >in forms. I made the mistake of not purchasing the support option
> >(additional $50.00) since I figured this was an easy piece to
> configure. I
> >am getting all sorts of errors and rather than spend $100 now (price of
> >support doubles if not purchased with the product) I thought I
> would first
> >check to see if anyone here on the list has used this and ran
> into the same
> >problems I am having.
>
> First this made me really irritated. It seems fraudulent that a company
> would provide poor documentation for a purchased product and charge you
> extra for tech support if you couldn't get it set up unless you
> knew about
> the bad documentation ahead of time-- especially since buying
> tech support
> at this point is more expensive that the actual software. This
> totally rubs
> me the wrong way and frankly, it seems deliberate to me (although
> I realize
> that I'm paranoid about these things).
>
> However, upon viewing their website I have discovered that they
> actually do
> provide free tech support for people who have not purchased the support
> plan. You aren't guaranteed an answer and people who have
> purchased support
> do get priority, but your problem is probably normal.
>
> However, I really wish they weren't passing the navigation through form
> variables in forms that have the same target so I could easily send you a
> link to the page that contains this info. At any rate, go back to the
> product page on their site and hit the "Technical Support Info." button
> near the bottom.
>
>
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Calling another page

2001-01-03 Thread Kevin Miller

HTTP_Referer is a client-supplied, optional element.  How widely is it
implemented?  At the very least, you might want to make some contingency
for the value being blank.

Regards,

Kevin

>>> [EMAIL PROTECTED] 01/03/01 03:44PM >>>
use HTTP_REFERER and make sure it's page A or don't execute page B.

-Original Message-
From: Parker, Kevin [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 03, 2001 2:55 PM
To: CF-Talk
Subject: Calling another page


Can someone give me some advice here please.

I have a form called A where the action template is called B. How can
I
ensure that B can only be executed by clicking the submit button on A?

TIA!!!



Kevin Parker
Manager, Web Services
Service and Communication
WorkCover Corporation

[EMAIL PROTECTED] 
www.workcover.com 

ph:   +61 8 82332548
fax:  +61 8 82332000
mob: 0418 800 287






This e-mail is intended for the use of the addressee only. It may
contain
information that is protected by legislated confidentiality and/or is
legally privileged. If you are not the intended recipient you are
prohibited
from disseminating, distributing or copying this e-mail. Any opinion
expressed in this e-mail may not necessarily be that of the WorkCover
Corporation of South Australia. Although precautions have been taken,
the
sender cannot warrant that this e-mail or any files transmitted with it
are
free of viruses or any other defect.
If you have received this e-mail in error, please notify the sender
immediately by return e-mail and destroy the original e-mail and any
copies.

~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: format question

2001-01-03 Thread Bernd VanSkiver

use the ParagraphFormat() function on the outputted text.

Bernd VanSkiver
[EMAIL PROTECTED]
ICQ #: 916324


-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 6:00 PM
To: CF-Talk
Subject: format question


I have a page in which I need to display a block of text, pulled from a
database, with the 'returns' doing exactly what the user intended.

For example I need it to look like this:

This is one line.
Here is another.
And one more

Instead of this:

This is one line. Here is another. And one more.

Note: This is not a textarea or form field of any sort, I already know how
to do that with HTMLEditFormat, but that does not seem to work for this

Thanks

Sal
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



format question

2001-01-03 Thread S R

I have a page in which I need to display a block of text, pulled from a 
database, with the 'returns' doing exactly what the user intended.

For example I need it to look like this:

This is one line.
Here is another.
And one more

Instead of this:

This is one line. Here is another. And one more.

Note: This is not a textarea or form field of any sort, I already know how 
to do that with HTMLEditFormat, but that does not seem to work for this

Thanks

Sal
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Calling another page

2001-01-03 Thread Dylan Bromby

use HTTP_REFERER and make sure it's page A or don't execute page B.

-Original Message-
From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 2:55 PM
To: CF-Talk
Subject: Calling another page


Can someone give me some advice here please.

I have a form called A where the action template is called B. How can I
ensure that B can only be executed by clicking the submit button on A?

TIA!!!



Kevin Parker
Manager, Web Services
Service and Communication
WorkCover Corporation

[EMAIL PROTECTED]
www.workcover.com

ph:   +61 8 82332548
fax:  +61 8 82332000
mob: 0418 800 287






This e-mail is intended for the use of the addressee only. It may contain
information that is protected by legislated confidentiality and/or is
legally privileged. If you are not the intended recipient you are prohibited
from disseminating, distributing or copying this e-mail. Any opinion
expressed in this e-mail may not necessarily be that of the WorkCover
Corporation of South Australia. Although precautions have been taken, the
sender cannot warrant that this e-mail or any files transmitted with it are
free of viruses or any other defect.
If you have received this e-mail in error, please notify the sender
immediately by return e-mail and destroy the original e-mail and any copies.

~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Email links lost

2001-01-03 Thread Jennifer

Wh boy. This is definitely entertaining if nothing else. ;)

My email client interpreted this message as HTML. So just to be happy, I'll 
be replacing some brackets with their special character equivalent. Just to 
make sure you can see it.

So for each email you should have something like (except that you'd have < 
instead of < and you'd have > instead of >):

 
 
 some html message here
 
 


Subsequent messages in the same file should look the same. Don't worry that 
you have multiple body tags in the file-- ColdFusion server will take all 
that out and only the HTML and BODY tags outside CFMAIL will be sent to the 
browser.

At 02:59 PM 1/3/01 -0800, you wrote:
>Each piece of email you send should look something like this:
>
>the real message
>-Original Message-
>From: Cami Lawson [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, January 03, 2001 2:54 PM
>To: CF-Talk
>Subject: Re: Email links lost
>
>
>Ok, I see what you are saying, but where do the  tags go,
>inside the CFEMAIL or outside.  I have a number of emails that get produced
>within one file.
>
>Thanks,
>cami
>- Original Message -
>From: "Jennifer" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Wednesday, January 03, 2001 4:54 PM
>Subject: Re: Email links lost
>
>
> > At 04:24 PM 1/3/01 -0600, you wrote:
> > >Actually it is just a composed email within the CF file in a CFEMAIL with
> > >type=HTML.
> >
> > Right, but apparently it needs  tags and  tags
> > between the CFMail tags. If the content isn't in  tags, the
> > email client won't necessarily recognize it as an HTML document and
> > therefore won't interpret it as such. That could cause your problem. If
>the
> > non-working Outlook clients have different settings that could cause a
> > problem then too.
> >
> > I've made HTML messages with CFMail and had them work in Netscape. I know
> > it can be done. It seems that your message is being interpreted by the
> > client as plain text, which it will do automatically if it doesn't know
> > better. If the code is indented (as one would expect of HTML or other
>code)
> > this indentation will show up in a plain text email.
> >
> > >  Like I said, it works great most of the time, but there are
> > >those times that it just looks ugly.  I have since stripped the HTML tags
> > >out and most the email software interprets the http://www.something.com
>as a
> > >link without the tags.  For pretty purposes I may leave it like that and
> > >those who don't get the link will have to cut and paste until I figure
>out
> > >how to make everyone happy.
> > >
> > >cami
> > >- Original Message -
> > >From: "Jennifer" <[EMAIL PROTECTED]>
> > >To: "CF-Talk" <[EMAIL PROTECTED]>
> > >Sent: Wednesday, January 03, 2001 4:23 PM
> > >Subject: Re: Email links lost
> > >
> > >
> > > > Is the message itself a full HTML document? I just checked some HTML
>email
> > > > that works in both Netscape and Eudora and it contains full HTML
>headers,
> > > > body tags and all that stuff. The viewable content is all inside a
>table
> > > > and it could be that the table is indented, but I can't tell since
> > > > everything would be indented.
> > > >
> > > > At 02:38 PM 1/3/01 -0600, you wrote:
> > > > >All the tag information appears to be correct.  Myself and some
>others
> > >are
> > > > >using MS Outlook Express 5 and the links appear ok, others are using
>the
> > > > >same thing and they see the html code.  Still yet others using
>prodigy
> > >and
> > > > >netscape get the words indented and the html tags visible.  I have
>tried
> > > > >leaving the HTML type and removing the href and just putting
> > > > >http://www.something.com and it works on some and won't on others.
>Right
> > > > >now I'm working on the majority rule but some higher ups want their
>cake
> > >and
> > > > >eat it too.
> > > > >
> > > > >cami
> > > > >- Original Message -
> > > > >From: "Jennifer" <[EMAIL PROTECTED]>
> > > > >To: "CF-Talk" <[EMAIL PROTECTED]>
> > > > >Sent: Wednesday, January 03, 2001 2:37 PM
> > > > >Subject: Re: Email links lost
> > > > >
> > > > >
> > > > > > At 02:04 PM 1/3/01 -0600, you wrote:
> > > > > > >I am sending out emails for different things and all have web
>links
> > >in
> > > > > > >them.  I was just wondering if anyone has had problems with
>emails
> > >sent
> > > > > > >from CF not properly identifying web address links when received
>by
> > >the
> > > > > > >recipient.  Is there something to handle the different types of
>email
> > > > > > >readers or is it just take a shot at the most used and pray for
>the
> > >best
> > > > > > >with the rest.
> > > > > > >
> > > > > > >I'm using type=HTML  and some of the emails show all the html
>tags,
> > >some
> > > > > > >have the text but the url is not a link, while others are just
>fine.
> > > > > >
> > > > > > I hope this doesn't sound patronizing, but you did put the link in
> >

Re: Is this a job for Verity?

2001-01-03 Thread Jeffry Houser



paul smith wrote:

> At 10:35 AM 1/3/01 -0700, you wrote:
> >You may want to consider the alternative of storing the content of
> >the html pages in the database and generate the "pages" dynamically
> >when requested.
> >
> >Not all sites lend themselves to this, but for those that do, the
> >impact can be dramatic (especially in the creation and maintenance of
> >the content),
>
> Which ones do not?
>

  I'm sort of jumping into the middle of a conversation here, so excuse me if this
is off topic.

  There are many times when a page should not be generated from a database.
The most common example I can give our the 'legal' section of a site.  Once the
lawyer is done with those documents, they'll be changed rarely, if at all.  Why does
this group of pages need to be dynamically generated out of the database if it
never changes?  What benefit does the database offer it?  I believe the answer is no
benefit.

   It can benefit from being dynamic (not database driven).  By using includes
as the 'navigation bar' and header/footer you don't have to manually change the
page each time you add a new navigation item or modify the graphic layout.

--
Jeff Houser | mailto:[EMAIL PROTECTED]
AIM: Reboog711  | ICQ: 5246969 | Phone: 860-229-2781
--
Instant Cold Fusion 4.5  | ISBN: 0-07-213238-8
Due out 3rd Quarter 2001
--
DotComIt, LLC
database driven web data using ColdFusion, Lotus Notes/Domino
--
Half of the Alternative Folk Acoustic Duo called Far Cry Fly
http://www.farcryfly.com | http://www.mp3.com/FarCryFly
--
Promise me no dead end streets, and I'll guarantee we'll have a road



~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Anybody using interested in helping?

2001-01-03 Thread Jennifer

At 05:30 PM 1/3/01 -0500, you wrote:
>I purchased the single domain version of htmlarea_one from
>www.iautomated.com and am having problems getting it configured and working
>in forms. I made the mistake of not purchasing the support option
>(additional $50.00) since I figured this was an easy piece to configure. I
>am getting all sorts of errors and rather than spend $100 now (price of
>support doubles if not purchased with the product) I thought I would first
>check to see if anyone here on the list has used this and ran into the same
>problems I am having.

First this made me really irritated. It seems fraudulent that a company 
would provide poor documentation for a purchased product and charge you 
extra for tech support if you couldn't get it set up unless you knew about 
the bad documentation ahead of time-- especially since buying tech support 
at this point is more expensive that the actual software. This totally rubs 
me the wrong way and frankly, it seems deliberate to me (although I realize 
that I'm paranoid about these things).

However, upon viewing their website I have discovered that they actually do 
provide free tech support for people who have not purchased the support 
plan. You aren't guaranteed an answer and people who have purchased support 
do get priority, but your problem is probably normal.

However, I really wish they weren't passing the navigation through form 
variables in forms that have the same target so I could easily send you a 
link to the page that contains this info. At any rate, go back to the 
product page on their site and hit the "Technical Support Info." button 
near the bottom.


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Calling another page

2001-01-03 Thread Scott Weikert

You mean, make sure no one happens to wander over to page B by typing in the
URL? If you have a form variable that you KNOW is going to be passed, look
for it at the top of the page.


allow the page to run - rest of code goes here

Sorry bud!


- Original Message -
From: "Parker, Kevin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 3:54 PM
Subject: Calling another page


> Can someone give me some advice here please.
>
> I have a form called A where the action template is called B. How can I
> ensure that B can only be executed by clicking the submit button on A?
>
> TIA!!!



~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Calling another page

2001-01-03 Thread Simon Horwith

test for the HTTP_REFERRER variable value.

~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 Message-
From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 5:55 PM
To: CF-Talk
Subject: Calling another page


Can someone give me some advice here please.

I have a form called A where the action template is called B. How can I
ensure that B can only be executed by clicking the submit button on A?

TIA!!!



Kevin Parker
Manager, Web Services
Service and Communication
WorkCover Corporation

[EMAIL PROTECTED]
www.workcover.com

ph:   +61 8 82332548
fax:  +61 8 82332000
mob: 0418 800 287






This e-mail is intended for the use of the addressee only. It may contain
information that is protected by legislated confidentiality and/or is
legally privileged. If you are not the intended recipient you are prohibited
from disseminating, distributing or copying this e-mail. Any opinion
expressed in this e-mail may not necessarily be that of the WorkCover
Corporation of South Australia. Although precautions have been taken, the
sender cannot warrant that this e-mail or any files transmitted with it are
free of viruses or any other defect.
If you have received this e-mail in error, please notify the sender
immediately by return e-mail and destroy the original e-mail and any copies.

~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: HostCentric feedback

2001-01-03 Thread Jon Bell

HostCentric is Powered by VirtualScape and several other middle level
providers.

We developed HostCentric and truthfully you will be recieving cservice from
VirtualScape.

JB

-Original Message-
From: stas [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 10:00 AM
To: CF-Talk
Subject: HostCentric feedback


Hello,

I noticed that VirtualScape is now under the umbrella of HostCentric. Both
sites offer same rates, but HostCentric's site is more informative. Are
there any reasons to choose HostCentric over VirtualScape (of which all
heard good things). This is for a dedicated server in NYC.

Thanks
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Email links lost

2001-01-03 Thread Dylan Bromby

inside if you're sending HTML-formatted email. only characters enclosed
within CFMAIL get mailed.

-Original Message-
From: Cami Lawson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 2:54 PM
To: CF-Talk
Subject: Re: Email links lost


Ok, I see what you are saying, but where do the  tags go,
inside the CFEMAIL or outside.  I have a number of emails that get produced
within one file.

Thanks,
cami
- Original Message -
From: "Jennifer" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 4:54 PM
Subject: Re: Email links lost


> At 04:24 PM 1/3/01 -0600, you wrote:
> >Actually it is just a composed email within the CF file in a CFEMAIL with
> >type=HTML.
>
> Right, but apparently it needs  tags and  tags
> between the CFMail tags. If the content isn't in  tags, the
> email client won't necessarily recognize it as an HTML document and
> therefore won't interpret it as such. That could cause your problem. If
the
> non-working Outlook clients have different settings that could cause a
> problem then too.
>
> I've made HTML messages with CFMail and had them work in Netscape. I know
> it can be done. It seems that your message is being interpreted by the
> client as plain text, which it will do automatically if it doesn't know
> better. If the code is indented (as one would expect of HTML or other
code)
> this indentation will show up in a plain text email.
>
> >  Like I said, it works great most of the time, but there are
> >those times that it just looks ugly.  I have since stripped the HTML tags
> >out and most the email software interprets the http://www.something.com
as a
> >link without the tags.  For pretty purposes I may leave it like that and
> >those who don't get the link will have to cut and paste until I figure
out
> >how to make everyone happy.
> >
> >cami
> >- Original Message -
> >From: "Jennifer" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Wednesday, January 03, 2001 4:23 PM
> >Subject: Re: Email links lost
> >
> >
> > > Is the message itself a full HTML document? I just checked some HTML
email
> > > that works in both Netscape and Eudora and it contains full HTML
headers,
> > > body tags and all that stuff. The viewable content is all inside a
table
> > > and it could be that the table is indented, but I can't tell since
> > > everything would be indented.
> > >
> > > At 02:38 PM 1/3/01 -0600, you wrote:
> > > >All the tag information appears to be correct.  Myself and some
others
> >are
> > > >using MS Outlook Express 5 and the links appear ok, others are using
the
> > > >same thing and they see the html code.  Still yet others using
prodigy
> >and
> > > >netscape get the words indented and the html tags visible.  I have
tried
> > > >leaving the HTML type and removing the href and just putting
> > > >http://www.something.com and it works on some and won't on others.
Right
> > > >now I'm working on the majority rule but some higher ups want their
cake
> >and
> > > >eat it too.
> > > >
> > > >cami
> > > >- Original Message -
> > > >From: "Jennifer" <[EMAIL PROTECTED]>
> > > >To: "CF-Talk" <[EMAIL PROTECTED]>
> > > >Sent: Wednesday, January 03, 2001 2:37 PM
> > > >Subject: Re: Email links lost
> > > >
> > > >
> > > > > At 02:04 PM 1/3/01 -0600, you wrote:
> > > > > >I am sending out emails for different things and all have web
links
> >in
> > > > > >them.  I was just wondering if anyone has had problems with
emails
> >sent
> > > > > >from CF not properly identifying web address links when received
by
> >the
> > > > > >recipient.  Is there something to handle the different types of
email
> > > > > >readers or is it just take a shot at the most used and pray for
the
> >best
> > > > > >with the rest.
> > > > > >
> > > > > >I'm using type=HTML  and some of the emails show all the html
tags,
> >some
> > > > > >have the text but the url is not a link, while others are just
fine.
> > > > >
> > > > > I hope this doesn't sound patronizing, but you did put the link in
> >proper
> > > > > HTML link tags, right? Some HTML-enabled email clients (like
Eudora)
> > > > > recognize URLs and treat them as links, even if they don't have
link
> >tags.
> > > > > If you do have the links between  tags send us
some
> > > > > information about how different email clients handle the issue.
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Email links lost

2001-01-03 Thread Jann VanOver

Each piece of email you send should look something like this:
  


the real message



-Original Message-
From: Cami Lawson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 2:54 PM
To: CF-Talk
Subject: Re: Email links lost


Ok, I see what you are saying, but where do the  tags go,
inside the CFEMAIL or outside.  I have a number of emails that get produced
within one file.

Thanks,
cami
- Original Message -
From: "Jennifer" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 4:54 PM
Subject: Re: Email links lost


> At 04:24 PM 1/3/01 -0600, you wrote:
> >Actually it is just a composed email within the CF file in a CFEMAIL with
> >type=HTML.
>
> Right, but apparently it needs  tags and  tags
> between the CFMail tags. If the content isn't in  tags, the
> email client won't necessarily recognize it as an HTML document and
> therefore won't interpret it as such. That could cause your problem. If
the
> non-working Outlook clients have different settings that could cause a
> problem then too.
>
> I've made HTML messages with CFMail and had them work in Netscape. I know
> it can be done. It seems that your message is being interpreted by the
> client as plain text, which it will do automatically if it doesn't know
> better. If the code is indented (as one would expect of HTML or other
code)
> this indentation will show up in a plain text email.
>
> >  Like I said, it works great most of the time, but there are
> >those times that it just looks ugly.  I have since stripped the HTML tags
> >out and most the email software interprets the http://www.something.com
as a
> >link without the tags.  For pretty purposes I may leave it like that and
> >those who don't get the link will have to cut and paste until I figure
out
> >how to make everyone happy.
> >
> >cami
> >- Original Message -
> >From: "Jennifer" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Wednesday, January 03, 2001 4:23 PM
> >Subject: Re: Email links lost
> >
> >
> > > Is the message itself a full HTML document? I just checked some HTML
email
> > > that works in both Netscape and Eudora and it contains full HTML
headers,
> > > body tags and all that stuff. The viewable content is all inside a
table
> > > and it could be that the table is indented, but I can't tell since
> > > everything would be indented.
> > >
> > > At 02:38 PM 1/3/01 -0600, you wrote:
> > > >All the tag information appears to be correct.  Myself and some
others
> >are
> > > >using MS Outlook Express 5 and the links appear ok, others are using
the
> > > >same thing and they see the html code.  Still yet others using
prodigy
> >and
> > > >netscape get the words indented and the html tags visible.  I have
tried
> > > >leaving the HTML type and removing the href and just putting
> > > >http://www.something.com and it works on some and won't on others.
Right
> > > >now I'm working on the majority rule but some higher ups want their
cake
> >and
> > > >eat it too.
> > > >
> > > >cami
> > > >- Original Message -
> > > >From: "Jennifer" <[EMAIL PROTECTED]>
> > > >To: "CF-Talk" <[EMAIL PROTECTED]>
> > > >Sent: Wednesday, January 03, 2001 2:37 PM
> > > >Subject: Re: Email links lost
> > > >
> > > >
> > > > > At 02:04 PM 1/3/01 -0600, you wrote:
> > > > > >I am sending out emails for different things and all have web
links
> >in
> > > > > >them.  I was just wondering if anyone has had problems with
emails
> >sent
> > > > > >from CF not properly identifying web address links when received
by
> >the
> > > > > >recipient.  Is there something to handle the different types of
email
> > > > > >readers or is it just take a shot at the most used and pray for
the
> >best
> > > > > >with the rest.
> > > > > >
> > > > > >I'm using type=HTML  and some of the emails show all the html
tags,
> >some
> > > > > >have the text but the url is not a link, while others are just
fine.
> > > > >
> > > > > I hope this doesn't sound patronizing, but you did put the link in
> >proper
> > > > > HTML link tags, right? Some HTML-enabled email clients (like
Eudora)
> > > > > recognize URLs and treat them as links, even if they don't have
link
> >tags.
> > > > > If you do have the links between  tags send us
some
> > > > > information about how different email clients handle the issue.
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Calling another page

2001-01-03 Thread Parker, Kevin

Can someone give me some advice here please.

I have a form called A where the action template is called B. How can I
ensure that B can only be executed by clicking the submit button on A?

TIA!!!



Kevin Parker
Manager, Web Services
Service and Communication
WorkCover Corporation

[EMAIL PROTECTED]
www.workcover.com

ph:   +61 8 82332548
fax:  +61 8 82332000
mob: 0418 800 287






This e-mail is intended for the use of the addressee only. It may contain
information that is protected by legislated confidentiality and/or is
legally privileged. If you are not the intended recipient you are prohibited
from disseminating, distributing or copying this e-mail. Any opinion
expressed in this e-mail may not necessarily be that of the WorkCover
Corporation of South Australia. Although precautions have been taken, the
sender cannot warrant that this e-mail or any files transmitted with it are
free of viruses or any other defect.
If you have received this e-mail in error, please notify the sender
immediately by return e-mail and destroy the original e-mail and any copies.


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Server at 100% problem

2001-01-03 Thread Jon Bell

Hey
Folks,

Is this the Dreaded DLLHost Issue?...


We are having the same problem,  first we thought is was code or a bad DLL,
then we thought it was the MDAC(Lots of problems if you have a bad data
driver). Now after reading this thread,  we have downloaded the SP2 again
and will reinstall.

We are running a Dual Pentium3 Server Gig o Ram  CF 4.5.1 SP2  IIS  nothing
else!

Should Fly,  but chokes instead.

Any thoughts on the MDAC

JB


-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 12:53 PM
To: CF-Talk
Subject: RE: Server at 100% problem


Just as a little bit of "Further Information", I've been watching the CPU
usage this afternoon (via Task Manager) and about 90-95% of the time
(including "busy periods") it stays below 50% utilisation, it's just at
certain points it hit 100% for a couple of seconds and then (usually) drops
back down again, it's just it occasionally it hits 100% and stays there
permanently...

The other servers seem to "never" go over the 50% mark...

Pigging annoying

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Email links lost

2001-01-03 Thread Cami Lawson

Ok, I see what you are saying, but where do the  tags go,
inside the CFEMAIL or outside.  I have a number of emails that get produced
within one file.

Thanks,
cami
- Original Message -
From: "Jennifer" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 4:54 PM
Subject: Re: Email links lost


> At 04:24 PM 1/3/01 -0600, you wrote:
> >Actually it is just a composed email within the CF file in a CFEMAIL with
> >type=HTML.
>
> Right, but apparently it needs  tags and  tags
> between the CFMail tags. If the content isn't in  tags, the
> email client won't necessarily recognize it as an HTML document and
> therefore won't interpret it as such. That could cause your problem. If
the
> non-working Outlook clients have different settings that could cause a
> problem then too.
>
> I've made HTML messages with CFMail and had them work in Netscape. I know
> it can be done. It seems that your message is being interpreted by the
> client as plain text, which it will do automatically if it doesn't know
> better. If the code is indented (as one would expect of HTML or other
code)
> this indentation will show up in a plain text email.
>
> >  Like I said, it works great most of the time, but there are
> >those times that it just looks ugly.  I have since stripped the HTML tags
> >out and most the email software interprets the http://www.something.com
as a
> >link without the tags.  For pretty purposes I may leave it like that and
> >those who don't get the link will have to cut and paste until I figure
out
> >how to make everyone happy.
> >
> >cami
> >- Original Message -
> >From: "Jennifer" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Wednesday, January 03, 2001 4:23 PM
> >Subject: Re: Email links lost
> >
> >
> > > Is the message itself a full HTML document? I just checked some HTML
email
> > > that works in both Netscape and Eudora and it contains full HTML
headers,
> > > body tags and all that stuff. The viewable content is all inside a
table
> > > and it could be that the table is indented, but I can't tell since
> > > everything would be indented.
> > >
> > > At 02:38 PM 1/3/01 -0600, you wrote:
> > > >All the tag information appears to be correct.  Myself and some
others
> >are
> > > >using MS Outlook Express 5 and the links appear ok, others are using
the
> > > >same thing and they see the html code.  Still yet others using
prodigy
> >and
> > > >netscape get the words indented and the html tags visible.  I have
tried
> > > >leaving the HTML type and removing the href and just putting
> > > >http://www.something.com and it works on some and won't on others.
Right
> > > >now I'm working on the majority rule but some higher ups want their
cake
> >and
> > > >eat it too.
> > > >
> > > >cami
> > > >- Original Message -
> > > >From: "Jennifer" <[EMAIL PROTECTED]>
> > > >To: "CF-Talk" <[EMAIL PROTECTED]>
> > > >Sent: Wednesday, January 03, 2001 2:37 PM
> > > >Subject: Re: Email links lost
> > > >
> > > >
> > > > > At 02:04 PM 1/3/01 -0600, you wrote:
> > > > > >I am sending out emails for different things and all have web
links
> >in
> > > > > >them.  I was just wondering if anyone has had problems with
emails
> >sent
> > > > > >from CF not properly identifying web address links when received
by
> >the
> > > > > >recipient.  Is there something to handle the different types of
email
> > > > > >readers or is it just take a shot at the most used and pray for
the
> >best
> > > > > >with the rest.
> > > > > >
> > > > > >I'm using type=HTML  and some of the emails show all the html
tags,
> >some
> > > > > >have the text but the url is not a link, while others are just
fine.
> > > > >
> > > > > I hope this doesn't sound patronizing, but you did put the link in
> >proper
> > > > > HTML link tags, right? Some HTML-enabled email clients (like
Eudora)
> > > > > recognize URLs and treat them as links, even if they don't have
link
> >tags.
> > > > > If you do have the links between  tags send us
some
> > > > > information about how different email clients handle the issue.
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Server at 100% problem

2001-01-03 Thread Angel Stewart

I've had this problem myself.
The only solution I found was to start and stop the CF service.
This problem occurred using MS Access databases at the datasources.

I never found the true cause, or the solution to the problem, but I believe
limiting the amount of concurrent users helped. I haven't had the problem
since, but I also made code changes to sort out another issue around the
same time...so I can't say in particular which change/changes removed the
problem.

The changes were varied, from moving from a CFTABLE output, to a CFGRID, to
introducing CFLOCK statements for certain requests, to adding and removing a
field from the underlying tables

-Gel


- Original Message -
From: Philip Arnold - ASP <[EMAIL PROTECTED]>


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL SUM Question

2001-01-03 Thread Joshua Tipton

Thats right I gorgot the as

> -Original Message-
> From: Kurt Ward [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 03, 2001 4:40 PM
> To: CF-Talk
> Subject: RE: SQL SUM Question
> 
> 
> Select Number from Tbl_Numbers SUM(Number) AS MyVar
> 
> #MyVar#
> 
> -Original Message-
> From: Kevin Queen [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 03, 2001 4:36 PM
> To: CF-Talk
> Subject: SQL SUM Question
> 
> 
> List,
> If I run the following query:
> 
> Select Number from Tbl_Numbers SUM(Number)
> 
> how can I oputput the SUMed variable in a cfoutput?
> 
> TIA,
> Kevin Queen
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Email links lost

2001-01-03 Thread Jennifer

At 04:24 PM 1/3/01 -0600, you wrote:
>Actually it is just a composed email within the CF file in a CFEMAIL with
>type=HTML.

Right, but apparently it needs  tags and  tags 
between the CFMail tags. If the content isn't in  tags, the 
email client won't necessarily recognize it as an HTML document and 
therefore won't interpret it as such. That could cause your problem. If the 
non-working Outlook clients have different settings that could cause a 
problem then too.

I've made HTML messages with CFMail and had them work in Netscape. I know 
it can be done. It seems that your message is being interpreted by the 
client as plain text, which it will do automatically if it doesn't know 
better. If the code is indented (as one would expect of HTML or other code) 
this indentation will show up in a plain text email.

>  Like I said, it works great most of the time, but there are
>those times that it just looks ugly.  I have since stripped the HTML tags
>out and most the email software interprets the http://www.something.com as a
>link without the tags.  For pretty purposes I may leave it like that and
>those who don't get the link will have to cut and paste until I figure out
>how to make everyone happy.
>
>cami
>- Original Message -
>From: "Jennifer" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Wednesday, January 03, 2001 4:23 PM
>Subject: Re: Email links lost
>
>
> > Is the message itself a full HTML document? I just checked some HTML email
> > that works in both Netscape and Eudora and it contains full HTML headers,
> > body tags and all that stuff. The viewable content is all inside a table
> > and it could be that the table is indented, but I can't tell since
> > everything would be indented.
> >
> > At 02:38 PM 1/3/01 -0600, you wrote:
> > >All the tag information appears to be correct.  Myself and some others
>are
> > >using MS Outlook Express 5 and the links appear ok, others are using the
> > >same thing and they see the html code.  Still yet others using prodigy
>and
> > >netscape get the words indented and the html tags visible.  I have tried
> > >leaving the HTML type and removing the href and just putting
> > >http://www.something.com and it works on some and won't on others.  Right
> > >now I'm working on the majority rule but some higher ups want their cake
>and
> > >eat it too.
> > >
> > >cami
> > >- Original Message -
> > >From: "Jennifer" <[EMAIL PROTECTED]>
> > >To: "CF-Talk" <[EMAIL PROTECTED]>
> > >Sent: Wednesday, January 03, 2001 2:37 PM
> > >Subject: Re: Email links lost
> > >
> > >
> > > > At 02:04 PM 1/3/01 -0600, you wrote:
> > > > >I am sending out emails for different things and all have web links
>in
> > > > >them.  I was just wondering if anyone has had problems with emails
>sent
> > > > >from CF not properly identifying web address links when received by
>the
> > > > >recipient.  Is there something to handle the different types of email
> > > > >readers or is it just take a shot at the most used and pray for the
>best
> > > > >with the rest.
> > > > >
> > > > >I'm using type=HTML  and some of the emails show all the html tags,
>some
> > > > >have the text but the url is not a link, while others are just fine.
> > > >
> > > > I hope this doesn't sound patronizing, but you did put the link in
>proper
> > > > HTML link tags, right? Some HTML-enabled email clients (like Eudora)
> > > > recognize URLs and treat them as links, even if they don't have link
>tags.
> > > > If you do have the links between  tags send us some
> > > > information about how different email clients handle the issue.
> > > >
> > > >
> > > >
> > >
> >
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Javascript validating

2001-01-03 Thread sebastian palmigiani


How can you use Javascript to validate an 
function validate() {
  if (document.myForm.DirectoryFile.value == ""); {
   alert("Choose the participants.xls file in your computer.");
return false;
}
return true;
}


---




 



   




~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Anybody using interested in helping?

2001-01-03 Thread Paul Sinclair

I purchased the single domain version of htmlarea_one from
www.iautomated.com and am having problems getting it configured and working
in forms. I made the mistake of not purchasing the support option
(additional $50.00) since I figured this was an easy piece to configure. I
am getting all sorts of errors and rather than spend $100 now (price of
support doubles if not purchased with the product) I thought I would first
check to see if anyone here on the list has used this and ran into the same
problems I am having.

I am not running down the product - I'm sure once it is configured it will
perform as advertised. But the configuration/setup instructions could use
some tweaking.

If anyone is using this tag successfully, I'd love to run a few of my issues
by you. Send mail offlist unless deemed to be suitable for list discussion.

Regards,
Paul Sinclair




~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Email links lost

2001-01-03 Thread Cami Lawson

Actually it is just a composed email within the CF file in a CFEMAIL with
type=HTML.  Like I said, it works great most of the time, but there are
those times that it just looks ugly.  I have since stripped the HTML tags
out and most the email software interprets the http://www.something.com as a
link without the tags.  For pretty purposes I may leave it like that and
those who don't get the link will have to cut and paste until I figure out
how to make everyone happy.

cami
- Original Message -
From: "Jennifer" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 4:23 PM
Subject: Re: Email links lost


> Is the message itself a full HTML document? I just checked some HTML email
> that works in both Netscape and Eudora and it contains full HTML headers,
> body tags and all that stuff. The viewable content is all inside a table
> and it could be that the table is indented, but I can't tell since
> everything would be indented.
>
> At 02:38 PM 1/3/01 -0600, you wrote:
> >All the tag information appears to be correct.  Myself and some others
are
> >using MS Outlook Express 5 and the links appear ok, others are using the
> >same thing and they see the html code.  Still yet others using prodigy
and
> >netscape get the words indented and the html tags visible.  I have tried
> >leaving the HTML type and removing the href and just putting
> >http://www.something.com and it works on some and won't on others.  Right
> >now I'm working on the majority rule but some higher ups want their cake
and
> >eat it too.
> >
> >cami
> >- Original Message -
> >From: "Jennifer" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Wednesday, January 03, 2001 2:37 PM
> >Subject: Re: Email links lost
> >
> >
> > > At 02:04 PM 1/3/01 -0600, you wrote:
> > > >I am sending out emails for different things and all have web links
in
> > > >them.  I was just wondering if anyone has had problems with emails
sent
> > > >from CF not properly identifying web address links when received by
the
> > > >recipient.  Is there something to handle the different types of email
> > > >readers or is it just take a shot at the most used and pray for the
best
> > > >with the rest.
> > > >
> > > >I'm using type=HTML  and some of the emails show all the html tags,
some
> > > >have the text but the url is not a link, while others are just fine.
> > >
> > > I hope this doesn't sound patronizing, but you did put the link in
proper
> > > HTML link tags, right? Some HTML-enabled email clients (like Eudora)
> > > recognize URLs and treat them as links, even if they don't have link
tags.
> > > If you do have the links between  tags send us some
> > > information about how different email clients handle the issue.
> > >
> > >
> > >
> >
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Email links lost

2001-01-03 Thread Jennifer

Is the message itself a full HTML document? I just checked some HTML email 
that works in both Netscape and Eudora and it contains full HTML headers, 
body tags and all that stuff. The viewable content is all inside a table 
and it could be that the table is indented, but I can't tell since 
everything would be indented.

At 02:38 PM 1/3/01 -0600, you wrote:
>All the tag information appears to be correct.  Myself and some others are
>using MS Outlook Express 5 and the links appear ok, others are using the
>same thing and they see the html code.  Still yet others using prodigy and
>netscape get the words indented and the html tags visible.  I have tried
>leaving the HTML type and removing the href and just putting
>http://www.something.com and it works on some and won't on others.  Right
>now I'm working on the majority rule but some higher ups want their cake and
>eat it too.
>
>cami
>- Original Message -
>From: "Jennifer" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Wednesday, January 03, 2001 2:37 PM
>Subject: Re: Email links lost
>
>
> > At 02:04 PM 1/3/01 -0600, you wrote:
> > >I am sending out emails for different things and all have web links in
> > >them.  I was just wondering if anyone has had problems with emails sent
> > >from CF not properly identifying web address links when received by the
> > >recipient.  Is there something to handle the different types of email
> > >readers or is it just take a shot at the most used and pray for the best
> > >with the rest.
> > >
> > >I'm using type=HTML  and some of the emails show all the html tags, some
> > >have the text but the url is not a link, while others are just fine.
> >
> > I hope this doesn't sound patronizing, but you did put the link in proper
> > HTML link tags, right? Some HTML-enabled email clients (like Eudora)
> > recognize URLs and treat them as links, even if they don't have link tags.
> > If you do have the links between  tags send us some
> > information about how different email clients handle the issue.
> >
> >
> >
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SQL Help

2001-01-03 Thread Cami Lawson

What are the columns that are somewhat linked between these tables?
- Original Message -
From: "Todd Ashworth" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 3:32 PM
Subject: OT: SQL Help


> Sorry about posting this to the wrong list, but I'm having trouble getting
> mail through to the SQL list.
>
> I am running a query to see if there is an entry in the database for an
> event that matches certain date criteria.  One of the criteria is that one
> of the dates that the event is scheduled on does not fall within a certain
> list of dates that are stored in the "exception_dates" table.
>
> All of the query works except for:  AND NOT EXISTS (SELECT 1
> FROM
> exception_dates ed
> WHERE
> ed.exception_dates = '#year#-#month#-#week_day# 00:00:00'))
>
> The way it should work is only return a record if there is no instance of
> the current year-month-day matching anything in the exception_dates table.
>
> Here is the whole query:
>
> SELECT 1 FROM dummy WHERE EXISTS
>   (SELECT 1 FROM teacher_schedule ts
>WHERE ts.contact_id = #Request.TempContactID#
>AND '#year#-#month#-#week_day#' BETWEEN ts.start_date AND
> ts.end_date
>AND (ts.start_time_1 <> ts.end_time_1 OR ts.start_time_2 <>
> ts.end_time_2)
>AND (SELECT days
>   FROM days_times dt
>   WHERE dt.days_times_id = ts.start_time_1) =
> '#DayOfWeekAsString(week_day)#'
>   AND NOT EXISTS (SELECT 1
> FROM
> exception_dates ed
> WHERE
> ed.exception_dates = '#year#-#month#-#week_day# 00:00:00'))
>
> What am I missing?
>
> Todd Ashworth
>
>
>
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL SUM Question

2001-01-03 Thread Joshua Tipton

select number sum(number)
from tbl_numbers


#number#

I think that is right I would try it

> -Original Message-
> From: Kevin Queen [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 03, 2001 4:36 PM
> To: CF-Talk
> Subject: SQL SUM Question
> 
> 
> List,
> If I run the following query:
> 
> Select Number from Tbl_Numbers SUM(Number)
> 
> how can I oputput the SUMed variable in a cfoutput?
> 
> TIA,
> Kevin Queen
> 
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL SUM Question

2001-01-03 Thread LKHaas

You have to select it as something, for example:

select sum(number) as sum_number
from Tbl_Numbers

Regards,
Lisa Haas
The Kennedy Center

-Original Message-
From: Kevin Queen [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 4:36 PM
To: CF-Talk
Subject: SQL SUM Question


List,
If I run the following query:

Select Number from Tbl_Numbers SUM(Number)

how can I oputput the SUMed variable in a cfoutput?

TIA,
Kevin Queen
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SQL SUM Question

2001-01-03 Thread Ricq Pattay

Wouldn't that be:


select sum(number) as whatever from Tbl_Numbers


and then

#get_sum.whatever#

?

- Original Message -
From: "Kevin Queen" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 3:36 PM
Subject: SQL SUM Question


> List,
> If I run the following query:
>
> Select Number from Tbl_Numbers SUM(Number)
>
> how can I oputput the SUMed variable in a cfoutput?
>
> TIA,
> Kevin Queen
>
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is this a job for Verity?

2001-01-03 Thread Dick Applebaum

At 1:17 PM -0800 1/3/01, paul smith wrote:
>Yes, I agree.  CFAS's query caching is very handy.
>
>I've considered using the database approach for client websites.
>Do you include HTML or CFML in the text stored in the database table?
>Do you have any suggestions of do's & don't's?
>


I've done both on the same web site:

Supplier & Product Listings:


No cfml or html in the db, all formatting and markup provided bt the 
CF program which retrieves and presents the data,

News and Article listings:
-

Storing markup (html) in the db as part of the content offers the 
most flexibility especially if you have tables, lists images.

Here, you might use a combination approach:

   intermixed markup and data for most of the text

   placeholders in the text for images (where the images URLs and and
   characteristics are in he db.

   The program substitutes the URL & size oarams for the placeholders

You might take the same approach for other db fields (Title, Author, etc.)

HTH

Dick



~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL SUM Question

2001-01-03 Thread Kurt Ward

Select Number from Tbl_Numbers SUM(Number) AS MyVar

#MyVar#

-Original Message-
From: Kevin Queen [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 4:36 PM
To: CF-Talk
Subject: SQL SUM Question


List,
If I run the following query:

Select Number from Tbl_Numbers SUM(Number)

how can I oputput the SUMed variable in a cfoutput?

TIA,
Kevin Queen
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: aliasing using cfmail

2001-01-03 Thread Dylan Bromby

FROM = "Rick <[EMAIL PROTECTED]>"

-Original Message-
From: Rick Lamb [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 11:31 AM
To: CF-Talk
Subject: aliasing using cfmail


Do any of you guys know how to alias the "from" parameter as to include a
display name along with the email address? EG:




Thx!


Rick
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Find "n" occurrence

2001-01-03 Thread Jann VanOver

Read up on regular expressions.  They can do this.

-Original Message-
From: Albert, Gregory Mitchell (Greg) [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 10:15 AM
To: CF-Talk
Subject: Find "n" occurrence


Is there a way to find the third (or "n") occurrence of a particular piece
of HTML on a page?

For instance, I want to only show the first three news entries and each
entry is separated by  Is there any way to remove any text after
those three entries? I'm not using a SQL Query... This is coming out of a
CFHTTP.FileContent so I can't use the maxrows command.

Any help that you could give me would be greatly appreciated!

- Greg Albert

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



SQL SUM Question

2001-01-03 Thread Kevin Queen

List,
If I run the following query:

Select Number from Tbl_Numbers SUM(Number)

how can I oputput the SUMed variable in a cfoutput?

TIA,
Kevin Queen

~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: SQL Help

2001-01-03 Thread Todd Ashworth

Sorry about posting this to the wrong list, but I'm having trouble getting
mail through to the SQL list.

I am running a query to see if there is an entry in the database for an
event that matches certain date criteria.  One of the criteria is that one
of the dates that the event is scheduled on does not fall within a certain
list of dates that are stored in the "exception_dates" table.

All of the query works except for:  AND NOT EXISTS (SELECT 1
FROM
exception_dates ed
WHERE
ed.exception_dates = '#year#-#month#-#week_day# 00:00:00'))

The way it should work is only return a record if there is no instance of
the current year-month-day matching anything in the exception_dates table.

Here is the whole query:

SELECT 1 FROM dummy WHERE EXISTS
  (SELECT 1 FROM teacher_schedule ts
   WHERE ts.contact_id = #Request.TempContactID#
   AND '#year#-#month#-#week_day#' BETWEEN ts.start_date AND
ts.end_date
   AND (ts.start_time_1 <> ts.end_time_1 OR ts.start_time_2 <>
ts.end_time_2)
   AND (SELECT days
  FROM days_times dt
  WHERE dt.days_times_id = ts.start_time_1) =
'#DayOfWeekAsString(week_day)#'
  AND NOT EXISTS (SELECT 1
FROM
exception_dates ed
WHERE
ed.exception_dates = '#year#-#month#-#week_day# 00:00:00'))

What am I missing?

Todd Ashworth



~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Deserialize array from wddx packet

2001-01-03 Thread Sima . Lee


Hi Laura,
I played around with your code and made a few changes , the following code
works for me:

In the form page:




   
   








In the action page:












#ArrayLen(month)#




#month[x]#



The changes I made is:
1. put a  around the hidden field.
2. moth is a one diamension array so should be referenced like month[x] not
month[ ][ ].
3. Remove the htmlformat() function in the hidden field's value. If you put
it back I got an error just like you got "unknown element encountered".

Hope this helps

Sima


||
||
||






   
   
"Harper,   
   
Laura"   To: CF-Talk <[EMAIL PROTECTED]>   
   
Subject: Deserialize array from wddx 
packet  
   
   
01/03/01   
   
11:41 AM   
   
Please 
   
respond to 
   
cf-talk
   
   
   
   
   



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_01C075AC.6E6BB0F0
Content-Type: text/plain;
   charset="iso-8859-1"

Happy New Year everyone!

I have a page where I need to pass 12 arrays (one for each month of the
year) to another page.  I have never used arrays with wddx before so I'm
testing using just one array, for simplicity.  The serialization piece is
working.  The problem is with the deserialization.  This error message
"unknown element encountered" appears. My code is as follows:
Serialize code:
The array name is janarray.


   
   

In the form - 
The output of this is:
0.00.00.0
This continues since there are 36 elements to the array, but I think you
get
the idea.

Deserialize code:







#month[x]["jan"]#



Any hints as to what I'm missing are greatly appreciated.  I've been
working
on this for a while and I'm getting a headache!  What a way to start the
new
year.  Thanks in advance.

Regards,

Laura





--_=_NextPart_001_01C075AC.6E6BB0F0
Content-Type: text/html;
   charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






Deserialize array from wddx packet



Happy New Year everyone!


I have a page where I need to pass 12 arrays (one for =
each month of the year) to another page.  I have never used arrays =
with wddx before so I'm testing using just one array, for =
simplicity.  The serialization piece is working.  The problem =
is with the deserialization.  This error message "unknown =
element encountered" appears. My code is as follows:

Serialize code:
The array name is janarray.



    
    


In the form - 
The output of this is:
0.00.00.0  This continues since = there are 36 elements to the array, but I think you get the idea.  = Deserialize code: #month[x]["jan"]# Any hints as to what I'm missing are greatly = appreciated.  I've been working on this for a while and I'm = getting a headache!  What a way to start the new year.  = Thanks in advance. Regards, Laura --_=_NextPart_001_01C075AC.6E6BB0F0-- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists ~~ 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: http://www.houseoffusion.com/index.cfm?sidebar=lists

Re: Julian Date

2001-01-03 Thread Keith C. Ivey

Adrian Cesana  <[EMAIL PROTECTED]> wrote:

> Why does dateformat(Now(), "Y") result in 1, (running today),
> isnt this the Julian Date function?

Not according to the documentation.  "Y" in DateFormat() gives 
"year as last two digits with no leading zero for years less 
than 10", so it should be 1 all this year.

I think what you want is DatePart("y", Now()).

Keith C. Ivey <[EMAIL PROTECTED]>
Webmaster, EEI Communications
66 Canal Center Plaza, Suite 200
Alexandria, VA  22314
Telephone:  703-683-0683
Fax:  703-683-4915
Web Site:  http://www.eeicommunications.com

~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is this a job for Verity?

2001-01-03 Thread paul smith

Yes, I agree.  CFAS's query caching is very handy.

I've considered using the database approach for client websites.
Do you include HTML or CFML in the text stored in the database table?
Do you have any suggestions of do's & don't's?

best,  paul

At 01:59 PM 1/3/01 -0700, you wrote:
>At 11:59 AM -0800 1/3/01, paul smith wrote:
> >At 10:35 AM 1/3/01 -0700, you wrote:
> >>You may want to consider the alternative of storing the content of
> >>the html pages in the database and generate the "pages" dynamically
> >>when requested.
> >>
>
>The site performed better as a whole because of CF's caching of queries...
>
>Because of a high incidence of the same query being issued by many
>visitors, visitors after the first performed better.


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Julian Date

2001-01-03 Thread Adrian Cesana

Yep your sure correct about that, I looked up the formatting info in Bens
CF4.0 Book Page 879, says it should be "Day Of Year" I guess thats incorrect
or was changed in 4.01.  Now looking in the CFML refrence I see "Y" is a
single digit for year, which makes more sense.  I guess I need
"DayOfYear(date)" function.

Thanks.

-Original Message-
From: Billy Cravens [mailto:[EMAIL PROTECTED]]



Essentially does the same thing.  The reason why it returns 1 is your
date mask; all your outputting in that instance is one digit of the
year; "" will return "2001".
Billy Cravens



Adrian Cesana wrote:
> Why does dateformat(Now(), "Y") result in 1, (running today), isnt this
the
> Julian Date function?
>
> -Adrian
>


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Julian Date

2001-01-03 Thread Billy Cravens

Essentially does the same thing.  The reason why it returns 1 is your
date mask; all your outputting in that instance is one digit of the
year; "" will return "2001".

-- 
Billy Cravens
[EMAIL PROTECTED]


Adrian Cesana wrote:
> 
> Why does dateformat(Now(), "Y") result in 1, (running today), isnt this the
> Julian Date function?
> 
> -Adrian
> 
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Email links lost

2001-01-03 Thread Billy Cravens

That's why I avoid HTML formatted email.  There's really no standardized
way of handling HTML email.  Not to mention that some strange ppl in
this world (including myself) like to turn HTML off.  First of all, I'd
recommend giving the user the choice of plain text or HTML. 
Additionally, I'd research the primary email clients (including web
based): Outlook, Netscape, Outlook Express, Eudora, Hotmail, Yahoo!,
etc. and find out how they handle things.  Give the user a drop down to
select their client from, and conditionally output your mail per their
client.  Of course, you'll need to have a default way of displaying.

-- 
Billy Cravens
[EMAIL PROTECTED]



Cami Lawson wrote:
> 
> I am sending out emails for different things and all have web links in them.  I was 
>just wondering if anyone has had problems with emails sent from CF not properly 
>identifying web address links when received by the recipient.  Is there something to 
>handle the different types of email readers or is it just take a shot at the most 
>used and pray for the best with the rest.
> 
> I'm using type=HTML  and some of the emails show all the html tags, some have the 
>text but the url is not a link, while others are just fine.
> 
> TIA,
> 
> cami
> 
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is this a job for Verity?

2001-01-03 Thread Dick Applebaum

At 11:59 AM -0800 1/3/01, paul smith wrote:
>At 10:35 AM 1/3/01 -0700, you wrote:
>>You may want to consider the alternative of storing the content of
>>the html pages in the database and generate the "pages" dynamically
>>when requested.
>>
>>Not all sites lend themselves to this, but for those that do, the
>>impact can be dramatic (especially in the creation and maintenance of
>>the content),
>
>Which ones do not?


You would not gain many of the advantages of dynamic content if the 
page content, once established, never changed...

>
>>This can easily outperform serving static pages.
>
>This is surprising given that in both cases a file needs to be read.  In
>your experience, when does a SQL approach outperform, and when not?

The site performed better as a whole because of CF's caching of queries...

Because of a high incidence of the same query being issued by many 
visitors, visitors after the first performed better.

As the site traffic increased, the site tended to perform better 
(greater probability of a query being in the cache)


>
>best,  paul
>

~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: aliasing using cfmail

2001-01-03 Thread Howie Hamlin

To be compliant, the "friendly name" needs to be delimited by quotes and the
actual address needs to be delimited by <> brackets as follows:

"friendly name" <[EMAIL PROTECTED]>

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 server
Get your free copy of iMS POST-SE Server from CoolFusion!

- Original Message -
From: "Rick Lamb" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 2:30 PM
Subject: aliasing using cfmail


> Do any of you guys know how to alias the "from" parameter as to include a
> display name along with the email address? EG:
>
>  from="Rick [[EMAIL PROTECTED]]"
>
> 
>
>
> Thx!
>
>
> Rick
>



~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Email links lost

2001-01-03 Thread Cami Lawson

All the tag information appears to be correct.  Myself and some others are
using MS Outlook Express 5 and the links appear ok, others are using the
same thing and they see the html code.  Still yet others using prodigy and
netscape get the words indented and the html tags visible.  I have tried
leaving the HTML type and removing the href and just putting
http://www.something.com and it works on some and won't on others.  Right
now I'm working on the majority rule but some higher ups want their cake and
eat it too.

cami
- Original Message -
From: "Jennifer" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, January 03, 2001 2:37 PM
Subject: Re: Email links lost


> At 02:04 PM 1/3/01 -0600, you wrote:
> >I am sending out emails for different things and all have web links in
> >them.  I was just wondering if anyone has had problems with emails sent
> >from CF not properly identifying web address links when received by the
> >recipient.  Is there something to handle the different types of email
> >readers or is it just take a shot at the most used and pray for the best
> >with the rest.
> >
> >I'm using type=HTML  and some of the emails show all the html tags, some
> >have the text but the url is not a link, while others are just fine.
>
> I hope this doesn't sound patronizing, but you did put the link in proper
> HTML link tags, right? Some HTML-enabled email clients (like Eudora)
> recognize URLs and treat them as links, even if they don't have link tags.
> If you do have the links between  tags send us some
> information about how different email clients handle the issue.
>
>
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFAPPLICATION confusion

2001-01-03 Thread Peter Benoit

Doing my first login application using CFAPPLICATION, and it seems to work
fine except for one thing... the user closes the browser and the application
doesn't end.  If the user logs out or times out the application will end,
but not if they close the browser window.  What can I do about this?

thanks,
pete


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



aliasing using cfmail

2001-01-03 Thread Rick Lamb

Do any of you guys know how to alias the "from" parameter as to include a
display name along with the email address? EG:




Thx!


Rick


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Adding and removing dates. Y21K compliant?

2001-01-03 Thread Barry Smith

That's awesome Ray. I had tried the DATEADD, since I felt it was more
elegant, but I used the PARSEDATE and just added or removed the TIMESPAN. 

I have included your code, but the only caveat I have is I still need to
have the dates formatted in "YY-MM-DD" since that is how I have named the
images and that is how they are called.

00-10-18Oct. 18, 2000
00-10-19Oct. 19, 2000
00-10-20Oct. 20, 2000
00-10-21Oct. 21, 2000
etc.

The DATEADD you wrote works great and I was able to streamline my code, but
the error still shows up for any dates above Jan. 1, 2001.

Jan 2 and Jan 3 give me odd output. It almost seems as if the DATEFORMAT on
the NEXTTOON and LASTTOON is being ignored. But the code seems to work for
all other dates.

Barry T. Smith
GlobalSight Webmaster
http://www.globalsight.com


-Original Message-
From: rayt@qsystems [mailto:rayt@qsystems]
Sent: Wednesday, January 03, 2001 11:32 AM
To: [EMAIL PROTECTED]
Subject: Re: Adding and removing dates. Y21K compliant?



New message has been posted in ColdFusion Support Conference

Forum:   Advanced Techniques
Thread:  Adding and removing dates. Y21K compliant?
Author:  Ray Thompson
Subject: Your Problem

URL: http://forums.allaire.com/DevConf/Index.cfm?Message_ID=634464


Your problem is in the format of your date. You are using DD-MM-YY which,
when processed by the ParseDateTime() function views the date a MM-DD-YY.
You also should use DateAdd() rather than adding a number, such as a
TimeSpan to a date. I changed the date format in the code and simplified the
code. It now produces the correct date.


* Accompanied HTML Code *



  



  







~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Email links lost

2001-01-03 Thread Jennifer

At 02:04 PM 1/3/01 -0600, you wrote:
>I am sending out emails for different things and all have web links in 
>them.  I was just wondering if anyone has had problems with emails sent 
>from CF not properly identifying web address links when received by the 
>recipient.  Is there something to handle the different types of email 
>readers or is it just take a shot at the most used and pray for the best 
>with the rest.
>
>I'm using type=HTML  and some of the emails show all the html tags, some 
>have the text but the url is not a link, while others are just fine.

I hope this doesn't sound patronizing, but you did put the link in proper 
HTML link tags, right? Some HTML-enabled email clients (like Eudora) 
recognize URLs and treat them as links, even if they don't have link tags. 
If you do have the links between  tags send us some 
information about how different email clients handle the issue.


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Custom Tag for creating Forms...

2001-01-03 Thread Adam Phillip Churvis

Take a look at DatabaseBlocks, guys!  Download the new Beta we just
uploaded early this morning, not the commercial release (some bugs).

Enjoy!

At 03:36 PM 1/3/01 +, you wrote:
>This may sound a little bit odd, but I am surprised that I can't find such a
>tool.

--SNIP!--

Respectfully,

Adam Phillip Churvis
Productivity Enhancement, Inc.

Publishers of the CommerceBlocks line of 
modular ColdFusion development tools 

Website: http://www.commerceblocks.com   
E-mail:  [EMAIL PROTECTED]
Phone:   770-446-8866

~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Server at 100% problem

2001-01-03 Thread Aaron Johnson

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Start up Performance Monitor on there and monitor everything that CF
does, you'll might able to see if there are specific things CF is
trying to do at those points:

start -- run -- type "perfmon"

I do this on the servers I monitor all the time, you can see things
like total users, memory cf is using, sql memory and you can run
reports on this to see when certain things go berserk.

Aaron Johnson, MCSE, MCP+I
Allaire Certified ColdFusion Developer
MINDSEYE, Inc.
617.350.0339
617.350.8884
66172567
[EMAIL PROTECTED]
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: load-balancing (using radware solutions and cold-fusion)

2001-01-03 Thread Kurt Ward

We use a different load balancing system, but this could still be an
idea to consider:

We have 3 Apache/CF servers that share a common file server for the website
content/templates. This would eliminate the need for the replication between
web servers (which I would not do in CF either) although you would probably
want a failover file server with replicated data.  It also makes it easier
if you need to add another web server to the farm.

Kurt Ward
8degrees-design
http://www.8degrees-design.com

-Original Message-
From: Olivier Moulene [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 03, 2001 12:54 PM
To: CF-Talk
Subject: load-balancing (using radware solutions and cold-fusion)


Hi,

I'm trying to set up a load-balancing solution based on Radware Web Server
Director and Radware Fireproof with Cold-Fusion.
I need to identify what I have to replicate (files, directories of my
application ) on every servers when an update is done by the application on
one server.
My biggest problem is that I have to do in CF an application that
synchonizes the content (files, directories) of each servers.
If a server is down and the synchronization cannot be done, I had to log it
and do it later.

Did anyone already do this ? Cause I'm not sure it's reliable or even
feasible in cold fusion.

Thanks
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Custom Tag for creating Forms...

2001-01-03 Thread Peter Theobald

So the real trick is making it extensible so you can use it to lay out a "basic 
default" form, but override certain things to customize it.

The design I had worked out didn't assume you only had one field per row. It let you 
put as many fields as you liked in a row. It would add up the number of fields on each 
row, multiply them all for a "common" denominator, and use that as the number of 
columns in a table. Each table cell would use rowspan to use up the appropriate space. 
Everything would come out neat and lined up...

I hadn't gotten to field validation yet when I put it aside...

At 02:28 PM 1/3/01 -0500, Aaron Johnson wrote:
>-BEGIN PGP SIGNED MESSAGE-
>Hash: SHA1
>
>Hey Paul,
>
>In theory and in some practices, I think this might work, however
>they are a number of things that have stood in my way when trying to
>do the same thing:
>
>1) Form layout almost always begs to be different for each site you
>do.  I personally enjoy a well laid out form.  To do layout
>programatically would definitely preclude you from making your forms
>look nice and well organized (ie: every form would almost have to be
>row after row after row of form elements, you would never be able to
>have multiple form elements on the same row because they'll all be
>different sizes)
>
>2) Form handling is almost always different.  Good forms validate the
>data sent to them, checking to make sure a date is a date, an email
>is an email, a phone number is a phone number and so on... you can
>write custom tags that assist in this, but again, you're going to run
>into specialized cases where you'll have write custom code (ie:
>custom wants to validate an their proprietary order number is an
>order number...)
>
>Obviously it's up to you to do, and like I said first, in theory,
>it's possible.  If what you want to create is a simple form creation
>custom tag that doesn't do much validation and is laid out in a
>similar fashion each time, then by all means go for it... but I can
>speak from experience in saying that even big CF shops still write
>forms by hand, without a custom tag.
>
>Aaron Johnson, MCSE, MCP+I
>Allaire Certified ColdFusion Developer
>MINDSEYE, Inc.
>617.350.0339
>617.350.8884
>66172567
>[EMAIL PROTECTED]
>
~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Email links lost

2001-01-03 Thread Cami Lawson

I am sending out emails for different things and all have web links in them.  I was 
just wondering if anyone has had problems with emails sent from CF not properly 
identifying web address links when received by the recipient.  Is there something to 
handle the different types of email readers or is it just take a shot at the most used 
and pray for the best with the rest.

I'm using type=HTML  and some of the emails show all the html tags, some have the text 
but the url is not a link, while others are just fine.

TIA,

cami


~~
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: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL/Javascript not executing after SQL Update

2001-01-03 Thread James Taavon

yep, too much coffee for me. thanks for pointing out the typo, that was
it.

Jon Hall wrote:
> 
> The default mail server can be set in the CF administrator, also since
> javascript is processed by the browser, just like any other text, 
> and any other cf tags are allowed within your  tags.
> 
> I think the problem is your quotation marks in the alert() function. The
> last quote mark is outside the ), when it should be inside and I think you
> are missing the semicolons.
> This is the snippet I use to do the same thing.
> 
> 
>