Passing URL String In From Button

2000-08-09 Thread Double Down, Inc.

Can anyone show me the proper format so I can pass this string
"action.cfm?area=#urlencodedformat(url.area)#&city=#urlencodedformat(url.cit
y)#&zip=#urlencodedformat(url.zip)#&name=#urlencodedformat(url.name)#&agency
=#urlencodedformat(url.agency)#&pageno=1&contact_id=#contact_id#&action=yes"
by using a form button.

TIA
DDINC

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: First JSP Fusebox Site?

2000-08-09 Thread Frank Priest

Nice job Jeff,
this is one of the fastest sites I've seen in a long time The pages 
just pop on the screen.


At 12:42 PM 8/9/2000 -0700, you wrote:
>http://BIGWORDS.com launched a new fuseboxed site this morning, using a JSP
>/ J2EE / CF combo running Weblogic and Cold Fusion on a combination of NT
>and Sun machines.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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

2000-08-09 Thread Peter Theobald


Sean, if I understand what you are trying to do, you want to
pass a query variable as an "argument" to a Module and
manipulate variables in the caller's scope using the data in that query.
You want to create a new variable in the scope caller.attributes that has
the same name as the query passed into the Module, and is a copy of that
query...

I can think of several easier ways to do this than the way you are trying
to doing it:

1) Pass the query's NAME into the module instead of the query itself.
Then your variable names are 
evaluate("caller.#qname#") and
evaluate("caller.attributes.#qname#").
By the way... I don't know if 'caller' gives you access to the calling
program's local variables scope or if it gives you access to ALL of the
caller's scopes, like 'attributes'. You'll have to experiment with that.
If not, you're out of luck.

2) Use an include that can more easily manipulate the variables in that
scope (because an include is in the same scope as the caller)


At 12:57 PM 8/10/00 +1000, Scott, Andrew wrote:
The way I understand the question, if you wish
to refer to the query outside
of the server (cgi variables) it would need to be passed along the url.
cgi
variables are hardcoded variables that come from the server, I am not
sure
what Sean you are trying to do. Maybe if you explained what it is you
are
trying to achieve someone here could help you out a bit.


regards

Andrea Scott
ANZ eCommerce Centre
* Ph 9273 0693  
* [EMAIL PROTECTED]


-Original Message-
From: Norman Elton
[mailto:[EMAIL PROTECTED]" eudora="autourl">mailto:[EMAIL PROTECTED]]
Sent: 10 August 2000 12:27
To: [EMAIL PROTECTED]
Subject: RE: Is there a variable for a query's name?


I'm afraid I might not understand your question, but as I understand it,
you
want to return the value specified as the Name="..." in a
CFQUERY?

Well, in order to process something like "MyQuery.QueryName",
wouldn't you
already know that the query's name is "MyQuery"? The object's
name is the
anchor for all the other attributes such as RecordCount and ColumnList,
etc.
If you don't already know the name, it's awfully hard to refer to
the
object.

Hope this helps. If not, reply!

Norman Elton
Information Technology
College of William & Mary

-Original Message-
From: Sean Renet
[mailto:[EMAIL PROTECTED]" 
eudora="autourl">mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 8:36 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED];
[EMAIL PROTECTED]
Subject: Re: Is there a variable for a query's name?


No that's not what I meant.  What I meant was a cgi variable for the
query's
name like myquery.columnlist gives you the query's column list and
myquery.recordcount gives you the query's record count.  I want a
cgi
variable for the query's name like myquery.queryname
- Original Message -
From: "Philip Arnold - ASP" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 3:14 AM
Subject: RE: Is there a variable for a query's name?


> > I am trying to make a tag that changes the scope of a query to
the
> > attributes scope.
> >
> > I want to tagify...
> > 
> >  > evaluate("RETAILER_INFO.#i#"))>
> > 
> >
> > so what I want to do is...
> >
> > 
> > 
> > 
> >
> > Is there a variable for the query's name?  There has to be
one,
debugging
> > lists the names of the queries...
>
> As this hasn't been answered for a couple of days (and I'm just
catching
up
> on emails)...
>
> You can use a variable name and Evaluate;
> 
>  evaluate("#caller.somequery#.#i#"))>
> 
>
> I'm not sure about the multiple scoping on caller.attributes. but
the
query
> name should work
>
> Philip Arnold
> 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.
>
**
>
>
>
--

> Archives:
http://www.mail-archive.com/cf-talk@houseoffusion.com/" 
eudora="autourl">http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk" 
eudora="autourl">http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

-

RE: URLs with & in CFMail

2000-08-09 Thread Jason Aden

agreed

-Original Message-
From: Brian Thornton [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 10:12 PM
To: [EMAIL PROTECTED]
Subject: Re: URLs with & in CFMail


that's right... It's not your problem.

At 09:04 PM 8/9/2000 -0500, you wrote:

>I want to include a URL that passes variables in CFMail such as:
>
>http://www.x.com/page.cfm?FirstName=#FirstName#&Email=#EMail#
>
>I get an error message with the ampersand &.
>
>If I use #Char(38)# instead
>
>http://www.x.com/page.cfm?FirstName=#FirstName##Char(38)#Email=#EMail#
>
>I get an error message about the =
>
>What's the solution?
>
>Sebastian
>
>
>
>---
---
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.

-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/
Brian Thornton
The Internet Design Firm
910 16th Street #810
Denver, CO 80202
phone. 303.893.6628
[EMAIL PROTECTED]
www.tidf.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF, ODBC and 64k data

2000-08-09 Thread rkeniger



>With CF 4.0, you will not be able to submit more than 64k. At CF 4.5, you
>can do this. You need to go into the ODBC area of the administrator and
>enable long text retrieval.

Bear in mind that there is a definite performance penalty in turning this
feature on.


Rob Keniger


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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

2000-08-09 Thread Scott, Andrew

The way I understand the question, if you wish to refer to the query outside
of the server (cgi variables) it would need to be passed along the url. cgi
variables are hardcoded variables that come from the server, I am not sure
what Sean you are trying to do. Maybe if you explained what it is you are
trying to achieve someone here could help you out a bit.


regards

Andrea Scott
ANZ eCommerce Centre
* Ph 9273 0693  
* [EMAIL PROTECTED]


-Original Message-
From: Norman Elton [mailto:[EMAIL PROTECTED]]
Sent: 10 August 2000 12:27
To: [EMAIL PROTECTED]
Subject: RE: Is there a variable for a query's name?


I'm afraid I might not understand your question, but as I understand it, you
want to return the value specified as the Name="..." in a CFQUERY?

Well, in order to process something like "MyQuery.QueryName", wouldn't you
already know that the query's name is "MyQuery"? The object's name is the
anchor for all the other attributes such as RecordCount and ColumnList, etc.
If you don't already know the name, it's awfully hard to refer to the
object.

Hope this helps. If not, reply!

Norman Elton
Information Technology
College of William & Mary

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 8:36 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED];
[EMAIL PROTECTED]
Subject: Re: Is there a variable for a query's name?


No that's not what I meant.  What I meant was a cgi variable for the query's
name like myquery.columnlist gives you the query's column list and
myquery.recordcount gives you the query's record count.  I want a cgi
variable for the query's name like myquery.queryname
- Original Message -
From: "Philip Arnold - ASP" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 3:14 AM
Subject: RE: Is there a variable for a query's name?


> > I am trying to make a tag that changes the scope of a query to the
> > attributes scope.
> >
> > I want to tagify...
> > 
> >  > evaluate("RETAILER_INFO.#i#"))>
> > 
> >
> > so what I want to do is...
> >
> > 
> > 
> > 
> >
> > Is there a variable for the query's name?  There has to be one,
debugging
> > lists the names of the queries...
>
> As this hasn't been answered for a couple of days (and I'm just catching
up
> on emails)...
>
> You can use a variable name and Evaluate;
> 
>  evaluate("#caller.somequery#.#i#"))>
> 
>
> I'm not sure about the multiple scoping on caller.attributes. but the
query
> name should work
>
> Philip Arnold
> 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.
> **
>
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF, ODBC and 64k data

2000-08-09 Thread Jason Aden

With CF 4.0, you will not be able to submit more than 64k. At CF 4.5, you
can do this. You need to go into the ODBC area of the administrator and
enable long text retrieval.

Jason


-Original Message-
From: Dan O'Keefe [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 6:55 PM
To: [EMAIL PROTECTED]
Subject: RE: CF, ODBC and 64k data


Duane,

Where do you see that it is truncated? If you are using query analyzer, it
will always appear to be truncated. If you query the field and display it on
a web page, is it all there?

--
Dan O'Keefe
TriPoint Technologies
[EMAIL PROTECTED]
954.501.3113

-> -Original Message-
-> From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
-> Sent: Wednesday, August 09, 2000 3:15 PM
-> To: CFTalk
-> Subject: CF, ODBC and 64k data
->
->
-> Hi All,
->
-> Is there some imposed limit which would cause CF accessing an
-> MSSQL7 db thru
-> ODBC? I am trying to submit 64k + of data via a post but the
-> data is getting
-> truncated. Has anyone else ever seen this? Is there a work around or fix?
->
-> Thanks,
-> Duane Boudreau,
-> eMPower Project Manager
-> Director, Web Technologies
-> Ektron, Inc.
-> http://www.ektron.com
-> 5 Northern Blvd, Suite 6
-> Amherst, NH 03031
-> Tel: 603-594-0249 x114
-> Fax: 603-594-0258
->
-> -
-> -
-> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
-> To Unsubscribe visit
-> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/c
f_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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

2000-08-09 Thread Norman Elton

I'm afraid I might not understand your question, but as I understand it, you
want to return the value specified as the Name="..." in a CFQUERY?

Well, in order to process something like "MyQuery.QueryName", wouldn't you
already know that the query's name is "MyQuery"? The object's name is the
anchor for all the other attributes such as RecordCount and ColumnList, etc.
If you don't already know the name, it's awfully hard to refer to the
object.

Hope this helps. If not, reply!

Norman Elton
Information Technology
College of William & Mary

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 8:36 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED];
[EMAIL PROTECTED]
Subject: Re: Is there a variable for a query's name?


No that's not what I meant.  What I meant was a cgi variable for the query's
name like myquery.columnlist gives you the query's column list and
myquery.recordcount gives you the query's record count.  I want a cgi
variable for the query's name like myquery.queryname
- Original Message -
From: "Philip Arnold - ASP" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 3:14 AM
Subject: RE: Is there a variable for a query's name?


> > I am trying to make a tag that changes the scope of a query to the
> > attributes scope.
> >
> > I want to tagify...
> > 
> >  > evaluate("RETAILER_INFO.#i#"))>
> > 
> >
> > so what I want to do is...
> >
> > 
> > 
> > 
> >
> > Is there a variable for the query's name?  There has to be one,
debugging
> > lists the names of the queries...
>
> As this hasn't been answered for a couple of days (and I'm just catching
up
> on emails)...
>
> You can use a variable name and Evaluate;
> 
>  evaluate("#caller.somequery#.#i#"))>
> 
>
> I'm not sure about the multiple scoping on caller.attributes. but the
query
> name should work
>
> Philip Arnold
> 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.
> **
>
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: URLs with & in CFMail

2000-08-09 Thread sebastian palmigiani

Never mind.

I mistakenly typed Char(38) instead of Chr(38) which works fine in cfmail.

Sebastian

on 8/9/00 9:04 PM, sebastian palmigiani at [EMAIL PROTECTED] wrote:

> 
> I want to include a URL that passes variables in CFMail such as:
> 
> http://www.x.com/page.cfm?FirstName=#FirstName#&Email=#EMail#
> 
> I get an error message with the ampersand &.
> 
> If I use #Char(38)# instead
> 
> http://www.x.com/page.cfm?FirstName=#FirstName##Char(38)#Email=#EMail#
> 
> I get an error message about the =
> 
> What's the solution?
> 
> Sebastian
> 
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in the
> body.
> 

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: URLs with & in CFMail

2000-08-09 Thread Brian Thornton

that's right... It's not your problem.

At 09:04 PM 8/9/2000 -0500, you wrote:

>I want to include a URL that passes variables in CFMail such as:
>
>http://www.x.com/page.cfm?FirstName=#FirstName#&Email=#EMail#
>
>I get an error message with the ampersand &.
>
>If I use #Char(38)# instead
>
>http://www.x.com/page.cfm?FirstName=#FirstName##Char(38)#Email=#EMail#
>
>I get an error message about the =
>
>What's the solution?
>
>Sebastian
>
>
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/
Brian Thornton
The Internet Design Firm
910 16th Street #810
Denver, CO 80202
phone. 303.893.6628
[EMAIL PROTECTED]
www.tidf.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



URLs with & in CFMail

2000-08-09 Thread sebastian palmigiani


I want to include a URL that passes variables in CFMail such as:

http://www.x.com/page.cfm?FirstName=#FirstName#&Email=#EMail#

I get an error message with the ampersand &.

If I use #Char(38)# instead

http://www.x.com/page.cfm?FirstName=#FirstName##Char(38)#Email=#EMail#

I get an error message about the =

What's the solution?

Sebastian



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Peter Theobald

Thank you for that clear explanation. I was scratching my head at this code... :-)

At 06:38 PM 8/9/00 -0400, Dave Watts wrote:
>> > Put this code in your application.cfm file. It will kill the session
>> > variables when the user closes the browser:
>> >
>> > 
>> > 
>> >   
>> >   
>> >   
>> >   
>> > 
>...
>> I don't think this will do what we are hoping it will. It looks to
>> me as if all it's doing is testing to see if the session is open,
>> if it is it's reading the values from the cookies and then putting
>> them back in there.am I completely off the mark here??
>
>The above code is overwriting the cookies that CF automatically creates,
>which are persistent beyond the life of the browser instance, with cookies
>that will be destroyed when the browser is closed. Thus, when a user closes
>the browser, they destroy their link to the session variables on the server,
>effectively ending their session.
>
>Dave Watts, CTO, Fig Leaf Software
>http://www.figleaf.com/
>voice: (202) 797-5496
>fax: (202) 797-5444
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body. 


---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 Fax 1.212.679.8032

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Fw: Resources

2000-08-09 Thread paul smith

--=_11566091==_.ALT
Content-Type: text/plain; charset="us-ascii"; format=flowed

www.fusebox.org

You can download all the code for the site.

best,  paul

At 07:56 PM 8/9/00 -0700, you wrote:
>This is a multi-part message in MIME format.
>
>--=_NextPart_000_00B5_01C0023B.E098A500
>Content-Type: text/plain;
> charset="iso-8859-1"
>Content-Transfer-Encoding: quoted-printable
>
>
>- Original Message -=20
>From: Mike Weaver=20
>To: [EMAIL PROTECTED]=20
>Sent: Wednesday, August 09, 2000 7:52 PM
>Subject: Resources
>
>
>Greetings,
> Being new to CF I have greatly appreciated this service and all of =
>you pros for taking time to share.  I am looking for a site which has =
>application code samples to study and view methodology.  My application =
>is progressing well but I would like access to more examples other than =
>my CF 4.5 manual and some $49.95 books I've bought.
>
>Thanks,
>Mike
>
>--=_NextPart_000_00B5_01C0023B.E098A500
>Content-Type: text/html;
> charset="iso-8859-1"
>Content-Transfer-Encoding: quoted-printable
>
>
>
>- Original Message -=20
>From: <3d.htm>Mike=20 Weaver
>To: <3d.htm>[EMAIL PROTECTED]
>Sent: Wednesday, August 09, 2000 7:52 PM
>Subject: Resources
>
>Greetings,
> Being new to CF I = have greatly=20 appreciated this service and all 
> of you pros for taking time to = share.  I=20 am looking for a site which 
> has application code samples to study and = view=20 methodology.  My 
> application is progressing well but I would like = access to=20 more 
> examples other than my CF 4.5 manual and some $49.95 books I've=20 bought.
>
>Thanks,
>Mike
>
>--=_NextPart_000_00B5_01C0023B.E098A500--
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

--=_11566091==_.ALT
Content-Type: text/html; charset="us-ascii"


http://www.fusebox.org/" eudora="autourl">www.fusebox.http://www.fusebox.org/" eudora="autourl">org

You can download all the code for the site.

best,  paul

At 07:56 PM 8/9/00 -0700, you wrote:
This is a multi-part message in MIME
format.

--=_NextPart_000_00B5_01C0023B.E098A500
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable


- Original Message -=20
From: Mike Weaver=20
To: [EMAIL PROTECTED]=20
Sent: Wednesday, August 09, 2000 7:52 PM
Subject: Resources


Greetings,
    Being new to CF I have greatly appreciated this
service and all of =
you pros for taking time to share.  I am looking for a site which
has =
application code samples to study and view methodology.  My
application =
is progressing well but I would like access to more examples other than
=
my CF 4.5 manual and some $49.95 books I've bought.

Thanks,
Mike

--=_NextPart_000_00B5_01C0023B.E098A500
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable


 
- Original Message -=20 
From: Mike=20 Weaver 
To: [EMAIL PROTECTED] 
Sent: Wednesday, August 09, 2000 7:52 PM
Subject: Resources

Greetings,
    Being new to CF I = have greatly=20 appreciated this
service and all of you pros for taking time to = share.  I=20 am
looking for a site which has application code samples to study and =
view=20 methodology.  My application is progressing well but I would
like = access to=20 more examples other than my CF 4.5 manual and some
$49.95 books I've=20 bought.
 
Thanks,
Mike

--=_NextPart_000_00B5_01C0023B.E098A500--

--
Archives:
http://www.mail-archive.com/cf-talk@houseoffusion.com/" 
eudora="autourl">http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk" 
eudora="autourl">http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. 


--=_11566091==_.ALT--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Fw: Resources

2000-08-09 Thread cf

This is a multi-part message in MIME format.

--=_NextPart_000_00B5_01C0023B.E098A500
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable


- Original Message -=20
From: Mike Weaver=20
To: [EMAIL PROTECTED]=20
Sent: Wednesday, August 09, 2000 7:52 PM
Subject: Resources


Greetings,
Being new to CF I have greatly appreciated this service and all of =
you pros for taking time to share.  I am looking for a site which has =
application code samples to study and view methodology.  My application =
is progressing well but I would like access to more examples other than =
my CF 4.5 manual and some $49.95 books I've bought.

Thanks,
Mike

--=_NextPart_000_00B5_01C0023B.E098A500
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable








 
- Original Message -=20
From: mailto:[EMAIL PROTECTED]" =
[EMAIL PROTECTED]>Mike=20
Weaver 
To: mailto:[EMAIL PROTECTED]"=20
[EMAIL PROTECTED]>[EMAIL PROTECTED] 
Sent: Wednesday, August 09, 2000 7:52 PM
Subject: Resources

Greetings,
    Being new to CF I =
have greatly=20
appreciated this service and all of you pros for taking time to =
share.  I=20
am looking for a site which has application code samples to study and =
view=20
methodology.  My application is progressing well but I would like =
access to=20
more examples other than my CF 4.5 manual and some $49.95 books I've=20
bought.
 
Thanks,
Mike

--=_NextPart_000_00B5_01C0023B.E098A500--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Help! Structs, properties therein... =)

2000-08-09 Thread cynthia . chia

Hello...

I have 2 structures.  Struct X is a superset of struct Y.

Say Struct X has properties: A, B, C, D, E.  Struct Y has properties that
are a unknown subset of Struct X, eg, A, B, C.

If struct X has data: A = 1, B = 2, C = 3, D = 4, E = 5.
If struct Y has data: A = 7, B = 8, C = 9.

The resultant struct I want has values: A = 7, B = 8, C = 9, D = 4, E = 5.

Struct Y can have properties that are any subset of struct X.

What is the cleanest way to do this?  Please help

Many thanks in advance,
Cynthia.  =)



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: "Need your help desperately..."

2000-08-09 Thread Michael Dinowitz

I refuse to make a value judgment on asking people who took the test for the
right questions. Some will say its perfectly legal and others will say its
wrong. Instead, I like to give access to data and let people learn. That's
actually one of the great things about the community. We share data all over
the place (even when we shouldn't).
I was going to save this till it was done, but I'll release it now as part
of this thread. It's a version of the CF docs where people can add in their
own comments. It's still in beta and changes will be made (like in the logon
section).
www.fusionauthority.com/docs
Like I said, give info and let those who wish to learn do so.


> Ehhmm..
>
> You think that looking at "Brain dump" sites is "Cheating" and diluting
the
> worth of the ACPP exam?
>
> In University..did you ever go through Past Papers for the courses you
were
> doing?
>
> Or ask the people that have done the exam before what sort of questions
> came..
> was it hard..
> was it easy..
> what should be you're focus in the exam..things you should watch out for
> etc.??
>
> Do you think that people who did that were "cheapening" their University
> exams?
> Do you think they were cheating?
>
> Just curious.
>
> -Gel
>
>
> - Original Message -
> From: Michael Dinowitz <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, August 09, 2000 8:28 PM
> Subject: Re: "Need your help desperately..."
>
>
> > I didn't receive an email of this sort. If I did, I'd have done for them
> > what I did for people internal to House of Fusion / CoreActive; I gave
> them
> > homework (besides giving classes and such).
> > Let me give the same homework to anyone who wants to actually work for a
> > good mark on the test.
> >
> > 1. Look over ALL of the CF tags. Read each tag name, read the
description
> > and then make a mental note as to its worth and category. For example:
> > CFSET is very important, so I'd suggest writing it down on a paper with
> some
> > notes. Same for CFIF and CFQUERY. CFGRID is not so important, so just
> > knowing that it's a java applet that works with CF and it part of the
> CFFORM
> > tags is enough.
> > When your done with this, you'll have a good idea of what all the tags
are
> > and a list of the ones you feel are important. As a side note, remember
> some
> > of the required attributes for the important tags.
> > 2. Look over ALL of the CF functions. Do the same as above.
> > 3. Try and group stuff together on paper and then in your head. Writing
> down
> > a short paragraph saying that there are 5 types of loops and what each
> does
> > (and what the index/item/whatever on each is). Same goes with the other
> > 'core' tags.
> > 4. Think of a scenario and think on how to go about solving it. In the
> last
> > issue of FA, there were some questions that were just for this purpose.
> > http://www.fusionauthority.com/alert/index.cfm?alertid=33#tech4
> > These are really no brainers but they really help. Best bet is to
actually
> > have someone sit down and ask you questions on all the above. Works
great.
> >
> > >
> > > I don't know this person so it appears to be Spam email that I got
from
> > > him.  I therefore wonder how many others have received a similar
request
> > > to help him cheat on the CF certification exam.  I find it very
> > > irritating that the value of my own efforts at getting honestly
> > > certifiied can be so easily diluted by cheaters.  This character and
> > > others like him should be blacklisted somehow and prevented from even
> > > taking the exam.  (I bet he cheated on his Microsoft and Prosoft exams
> > > too).
> > >
> > > Regards,
> > >
> > > Karl Simanonok
> > >
> > > Original message to me:
> > > 
> > >
> > > Hi.
> > >
> > > I am Dilip Jumani working as a Software Consultant.
> > >
> > > I want to clear the ACPP(Allaire Certified
> > > Professional Program) exam. For that I need your help.
> > >
> > > If you have attended any of the training on Cold
> > > Fusion and have any material or if you have questions
> > > or dumps for the exam then please send me those. I
> > > will appreciate it very much.
> > >
> > > So far, I have cleared Microsoft and Prosoft exams.
> > > Please let me know if I can be helpful to you anyway.
> > >
> > > Expecting a positive response from you.
> > >
> > > Email id [EMAIL PROTECTED]
> > > [EMAIL PROTECTED]
> > >
> > > Thanking you,
> > > Dilip.
> > >
>
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
mes

RE: Forms in Email Question

2000-08-09 Thread Katrina Chapman

This is a multi-part message in MIME format.

--=_NextPart_000_000C_01C00222.6E676F70
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

It's not really that they don't like it.  It's that their email clients
aren't capable of reading it.  When they get HTML formatted messages they're
ugly, and quite large.  Just to prove a point I'll send this one in HTML
format to the list.  I know the server will take the formatting out for me
and you'll get an idea of what they're messages will look like.

--K

-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 4:46 PM
To: [EMAIL PROTECTED]
Subject: RE: Forms in Email Question


Why do you say people might not like it? What don't they like about it?


>From: "Katrina Chapman" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: <[EMAIL PROTECTED]>
>Subject: RE: Forms in Email Question
>Date: Wed, 9 Aug 2000 16:35:14 -0700
>
>They send you HTML formatted email messages.  More importantly you can do
>this with the cfmail tag.  Be forwarned however, if you're thinking of
>sending messages out in this format some people might not like it.  You
>should give the option of non-html formatted.
>
>--K
>
>-Original Message-
>From: S R [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, August 09, 2000 4:18 PM
>To: [EMAIL PROTECTED]
>Subject: Forms in Email Question
>
>
>Hi,
>
>I receive these cool emails from Variety magazine that have the actual
>front
>page of the website right within the email. Even more cool, there is
>another
>website that sends me emails that upon opening there is a form where that
>you can fill out and it processes it, takes you to their website where you
>see a thank you page. How is this done in email???
>
>SR
>
>Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
>
>---
-
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.
>
>---
---
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



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








It's not =
really that they=20
don't like it.  It's that their email clients aren't capable of =
reading=20
it.  When they get HTML formatted messages they're ugly, and quite=20
large.  Just to prove a point I'll send this one in HTML format to =
the=20
list.  I know the server will take the formatting out for me and =
you'll get=20
an idea of what they're messages will look=20
like.--K-Original Message-From: S R =
[mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]=
m]Sent:=20
Wednesday, August 09, 2000 4:46 PMTo: =
[EMAIL PROTECTED]Subject:=20
RE: Forms in Email QuestionWhy do you say people might not =
like it?=20
What don't they like about it?>From: "Katrina Chapman"=20
<[EMAIL PROTECTED]>>Reply-To: =
[EMAIL PROTECTED]>To:=20
<[EMAIL PROTECTED]>>Subject: RE: Forms in Email=20
Question>Date: Wed, 9 Aug 2000 16:35:14 -0700>>They =
send=20
you HTML formatted email messages.  More importantly you can =
do>this=20
with the cfmail tag.  Be forwarned however, if you're thinking=20
of>sending messages out in this format some people might not like =

it.  You>should give the option of non-html=20
formatted.>>--K>>-Original=20
Message->From: S R [mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]=
m]>Sent:=20
Wednesday, August 09, 2000 4:18 PM>To:=20
[EMAIL PROTECTED]>Subject: Forms in Email=20
Question>>>Hi,>>I receive these cool =
emails=20
from Variety magazine that have the actual>front>page of =
the=20
website right within the email. Even more cool, there=20
is>another>website that sends me emails that upon opening =
there is=20
a form where that>you can fill out and it processes it, takes you =
to=20
their website where you>see a thank you page. How is this done in =

email???>>SR>___=
_>Get=20
Your Private, F

RE: Forms in Email Question

2000-08-09 Thread S R

Why do you say people might not like it? What don't they like about it?


>From: "Katrina Chapman" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: <[EMAIL PROTECTED]>
>Subject: RE: Forms in Email Question
>Date: Wed, 9 Aug 2000 16:35:14 -0700
>
>They send you HTML formatted email messages.  More importantly you can do
>this with the cfmail tag.  Be forwarned however, if you're thinking of
>sending messages out in this format some people might not like it.  You
>should give the option of non-html formatted.
>
>--K
>
>-Original Message-
>From: S R [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, August 09, 2000 4:18 PM
>To: [EMAIL PROTECTED]
>Subject: Forms in Email Question
>
>
>Hi,
>
>I receive these cool emails from Variety magazine that have the actual 
>front
>page of the website right within the email. Even more cool, there is 
>another
>website that sends me emails that upon opening there is a form where that
>you can fill out and it processes it, takes you to their website where you
>see a thank you page. How is this done in email???
>
>SR
>
>Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
>
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: "Need your help desperately..."

2000-08-09 Thread Angel Stewart

Ehhmm..

You think that looking at "Brain dump" sites is "Cheating" and diluting the
worth of the ACPP exam?

In University..did you ever go through Past Papers for the courses you were
doing?

Or ask the people that have done the exam before what sort of questions
came..
was it hard..
was it easy..
what should be you're focus in the exam..things you should watch out for
etc.??

Do you think that people who did that were "cheapening" their University
exams?
Do you think they were cheating?

Just curious.

-Gel


- Original Message -
From: Michael Dinowitz <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 8:28 PM
Subject: Re: "Need your help desperately..."


> I didn't receive an email of this sort. If I did, I'd have done for them
> what I did for people internal to House of Fusion / CoreActive; I gave
them
> homework (besides giving classes and such).
> Let me give the same homework to anyone who wants to actually work for a
> good mark on the test.
>
> 1. Look over ALL of the CF tags. Read each tag name, read the description
> and then make a mental note as to its worth and category. For example:
> CFSET is very important, so I'd suggest writing it down on a paper with
some
> notes. Same for CFIF and CFQUERY. CFGRID is not so important, so just
> knowing that it's a java applet that works with CF and it part of the
CFFORM
> tags is enough.
> When your done with this, you'll have a good idea of what all the tags are
> and a list of the ones you feel are important. As a side note, remember
some
> of the required attributes for the important tags.
> 2. Look over ALL of the CF functions. Do the same as above.
> 3. Try and group stuff together on paper and then in your head. Writing
down
> a short paragraph saying that there are 5 types of loops and what each
does
> (and what the index/item/whatever on each is). Same goes with the other
> 'core' tags.
> 4. Think of a scenario and think on how to go about solving it. In the
last
> issue of FA, there were some questions that were just for this purpose.
> http://www.fusionauthority.com/alert/index.cfm?alertid=33#tech4
> These are really no brainers but they really help. Best bet is to actually
> have someone sit down and ask you questions on all the above. Works great.
>
> >
> > I don't know this person so it appears to be Spam email that I got from
> > him.  I therefore wonder how many others have received a similar request
> > to help him cheat on the CF certification exam.  I find it very
> > irritating that the value of my own efforts at getting honestly
> > certifiied can be so easily diluted by cheaters.  This character and
> > others like him should be blacklisted somehow and prevented from even
> > taking the exam.  (I bet he cheated on his Microsoft and Prosoft exams
> > too).
> >
> > Regards,
> >
> > Karl Simanonok
> >
> > Original message to me:
> > 
> >
> > Hi.
> >
> > I am Dilip Jumani working as a Software Consultant.
> >
> > I want to clear the ACPP(Allaire Certified
> > Professional Program) exam. For that I need your help.
> >
> > If you have attended any of the training on Cold
> > Fusion and have any material or if you have questions
> > or dumps for the exam then please send me those. I
> > will appreciate it very much.
> >
> > So far, I have cleared Microsoft and Prosoft exams.
> > Please let me know if I can be helpful to you anyway.
> >
> > Expecting a positive response from you.
> >
> > Email id [EMAIL PROTECTED]
> > [EMAIL PROTECTED]
> >
> > Thanking you,
> > Dilip.
> >


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Forms in Email Question

2000-08-09 Thread Katrina Chapman

They send you HTML formatted email messages.  More importantly you can do
this with the cfmail tag.  Be forwarned however, if you're thinking of
sending messages out in this format some people might not like it.  You
should give the option of non-html formatted.

--K

-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 4:18 PM
To: [EMAIL PROTECTED]
Subject: Forms in Email Question


Hi,

I receive these cool emails from Variety magazine that have the actual front
page of the website right within the email. Even more cool, there is another
website that sends me emails that upon opening there is a form where that
you can fill out and it processes it, takes you to their website where you
see a thank you page. How is this done in email???

SR

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Clustering Options

2000-08-09 Thread Kevin Miller


We are beginning to explore a clustered environment for our web servers.  We are 
looking primarily into a software solution at this time, and have initially identified 
Microsoft's Windows NT Load Balancing Service (WLBS), and Allaire's ClusterCATS as 
possible solutions.

Are there others to consider?  We are focusing mainly on these two options because 
they present no additional costs (we already have the CF Enterprise licenses), but 
would consider other options at well.  I would love to hear feedback about these two 
systems and any others you might know of.  

We are also looking into test suites to benchmark the load balancing and failover 
capabilities of the various options that we choose to investigate.  Microsoft seems to 
have a test suite, but I have heard of problems with using it against a CF 
environment.  Are there any others we should look into?

Thanks for your assistance, 

Kevin

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: "Need your help desperately..."

2000-08-09 Thread Michael Dinowitz

I didn't receive an email of this sort. If I did, I'd have done for them
what I did for people internal to House of Fusion / CoreActive; I gave them
homework (besides giving classes and such).
Let me give the same homework to anyone who wants to actually work for a
good mark on the test.

1. Look over ALL of the CF tags. Read each tag name, read the description
and then make a mental note as to its worth and category. For example:
CFSET is very important, so I'd suggest writing it down on a paper with some
notes. Same for CFIF and CFQUERY. CFGRID is not so important, so just
knowing that it's a java applet that works with CF and it part of the CFFORM
tags is enough.
When your done with this, you'll have a good idea of what all the tags are
and a list of the ones you feel are important. As a side note, remember some
of the required attributes for the important tags.
2. Look over ALL of the CF functions. Do the same as above.
3. Try and group stuff together on paper and then in your head. Writing down
a short paragraph saying that there are 5 types of loops and what each does
(and what the index/item/whatever on each is). Same goes with the other
'core' tags.
4. Think of a scenario and think on how to go about solving it. In the last
issue of FA, there were some questions that were just for this purpose.
http://www.fusionauthority.com/alert/index.cfm?alertid=33#tech4
These are really no brainers but they really help. Best bet is to actually
have someone sit down and ask you questions on all the above. Works great.

>
> I don't know this person so it appears to be Spam email that I got from
> him.  I therefore wonder how many others have received a similar request
> to help him cheat on the CF certification exam.  I find it very
> irritating that the value of my own efforts at getting honestly
> certifiied can be so easily diluted by cheaters.  This character and
> others like him should be blacklisted somehow and prevented from even
> taking the exam.  (I bet he cheated on his Microsoft and Prosoft exams
> too).
>
> Regards,
>
> Karl Simanonok
>
> Original message to me:
> 
>
>
>
> --70D9BE1E0E01862BA9F0B918
> Content-Type: message/rfc822
> Content-Transfer-Encoding: 7bit
> Content-Disposition: inline
>
> Received: from web2305.mail.yahoo.com [128.11.68.80] by
advantasolutions.com
>   (SMTPD32-4.07) id A70F1990104; Wed, 09 Aug 2000 09:30:07 PST
> Message-ID: <[EMAIL PROTECTED]>
> Received: from [202.131.101.50] by web2305.mail.yahoo.com; Wed, 09 Aug
2000 09:30:19 PDT
> Date: Wed, 9 Aug 2000 09:30:19 -0700 (PDT)
> From: dilip jumani <[EMAIL PROTECTED]>
> Subject: Need your help desperately...
> To: [EMAIL PROTECTED]
> MIME-Version: 1.0
> Content-Type: text/plain; charset=us-ascii
> X-Mozilla-Status2: 
>
> Hi.
>
> I am Dilip Jumani working as a Software Consultant.
>
> I want to clear the ACPP(Allaire Certified
> Professional Program) exam. For that I need your help.
>
> If you have attended any of the training on Cold
> Fusion and have any material or if you have questions
> or dumps for the exam then please send me those. I
> will appreciate it very much.
>
> So far, I have cleared Microsoft and Prosoft exams.
> Please let me know if I can be helpful to you anyway.
>
> Expecting a positive response from you.
>
> Email id [EMAIL PROTECTED]
> [EMAIL PROTECTED]
>
> Thanking you,
> Dilip.
>
> __
> Do You Yahoo!?
> Kick off your party with Yahoo! Invites.
> http://invites.yahoo.com/
>
>
> --70D9BE1E0E01862BA9F0B918--
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Forms in Email Question

2000-08-09 Thread S R

Hi,

I receive these cool emails from Variety magazine that have the actual front 
page of the website right within the email. Even more cool, there is another 
website that sends me emails that upon opening there is a form where that 
you can fill out and it processes it, takes you to their website where you 
see a thank you page. How is this done in email???

SR

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: First JSP Fusebox Site?

2000-08-09 Thread !jeff!

We felt that J2EE is more suitable for the high db traffic and heavy 
business logic areas.  We started with the store area of the site, and 
worked outward.




At 05:44 PM 8/9/2000 -0500, Kevin Miller wrote:

>Just out of curiosity, what criteria did you use to determine what
>sections were written in JSP versus CF?
>
>Kevin
>
> >>> [EMAIL PROTECTED] 08/09/00 01:23PM >>>
>CF is in the company and HELP areas.  Also, over the next 3 weeks there
>
>will be 3 major new areas in CF.
>
>j
>
>At 04:13 PM 8/9/2000 -0400, Mike Amburn wrote:
> >where are you using CF? all i saw were JSP pages...
> >
> > > -Original Message-
> > > From: !jeff! [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, August 09, 2000 3:42 PM
> > > To: Recipient list suppressed
> > > Subject: First JSP Fusebox Site?
> > >
> > >
> > > http://BIGWORDS.com launched a new fuseboxed site this morning,
> > > using a JSP
> > > / J2EE / CF combo running Weblogic and Cold Fusion on a combination
>of NT
> > > and Sun machines.
> > >
> > > The site is written completely in FUSEBOX.  It has been for a long
>time,
> > > but we just re-launched the site using JSP for a large portion of
> > > the site,
> > > and we used the fusebox standard, with some additional file types
>which I
> > > plan to recommend to fusebox.org.
> > >
> > > Please don't take this email as spam, i'm not asking any of you to
>buy
> > > anything.  I simply wanted to show off a new fusebox site which
>uses a
> > > combination of CF and JSP/J2EE, and which (IMHO) fluidly translates
>the
> > > concepts of fusebox to JSP/J2EE.
> > >
> > > And I'd be happy to hear your feedback, or answer questions.
> > >
> > > Jeff Sherwood
> > > Founder / CIO / Director of Web Site Design
> > > BIGWORDS.com
> > >
> > >
> > >
> > > !j!
> > >
> > > The mark of mediocrity is searching for the precedent.
> > >
> > > !jeff! sherwood Director of BIGWORDS.com Web Site Design /
>JEDI
> > >BIGWORDS.com
>worker#2
> > > .r.e.c.o.v.e.r.e.d.n.e.t.s.c.a.p.e.u.s.e.r. . . .
>415.543.1400.x300
> > >
> > > --
> > > 
> > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > To Unsubscribe visit
> > > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
>
> >_talk or send a message to [EMAIL PROTECTED] with
> >'unsubscribe' in the body.
> >
> >- 
> -
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit
> >http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
>or
> >send a message to [EMAIL PROTECTED] with 'unsubscribe'
>in
> >the body.
>
>!j!
>
>The mark of mediocrity is searching for the precedent.
>
>!jeff! sherwood Director of BIGWORDS.com Web Site Design / JEDI
>BIGWORDS.com worker#2
>.r.e.c.o.v.e.r.e.d.n.e.t.s.c.a.p.e.u.s.e.r. . . . 415.543.1400.x300
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
>or send a message to [EMAIL PROTECTED] with
>'unsubscribe' in the body.
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

!j!

The mark of mediocrity is searching for the precedent.

!jeff! sherwood Director of BIGWORDS.com Web Site Design / JEDI
   BIGWORDS.com worker#2
.r.e.c.o.v.e.r.e.d.n.e.t.s.c.a.p.e.u.s.e.r. . . . 415.543.1400.x300

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF, ODBC and 64k data

2000-08-09 Thread Dan O'Keefe

Duane,

Where do you see that it is truncated? If you are using query analyzer, it
will always appear to be truncated. If you query the field and display it on
a web page, is it all there?

--
Dan O'Keefe
TriPoint Technologies
[EMAIL PROTECTED]
954.501.3113

-> -Original Message-
-> From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
-> Sent: Wednesday, August 09, 2000 3:15 PM
-> To: CFTalk
-> Subject: CF, ODBC and 64k data
->
->
-> Hi All,
->
-> Is there some imposed limit which would cause CF accessing an
-> MSSQL7 db thru
-> ODBC? I am trying to submit 64k + of data via a post but the
-> data is getting
-> truncated. Has anyone else ever seen this? Is there a work around or fix?
->
-> Thanks,
-> Duane Boudreau,
-> eMPower Project Manager
-> Director, Web Technologies
-> Ektron, Inc.
-> http://www.ektron.com
-> 5 Northern Blvd, Suite 6
-> Amherst, NH 03031
-> Tel: 603-594-0249 x114
-> Fax: 603-594-0258
->
-> -
-> -
-> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
-> To Unsubscribe visit
-> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/c
f_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



round 2: help with query.

2000-08-09 Thread miles

1.) 
select *
from nxsteche
where tech_code = '#tech#'


2.) 
SELECT DISTINCT nxstar_e.tar_num, nxstar_e.bus_name, nxstar_e.cust_code,
nxstar_e.tar_status, Max(nxsprodr.prod_desc) AS prod_desc, 
nxstar_e.assigned_to,
nxstar_e.synopsis, nxstar_e.phone, nxstar_e.entered_date, 
nxstar_e.symptom_code,
Count(nxsnotes.id) AS activities, nxstar_e.contact
FROM nxsnotes
  INNER JOIN (
 (nxstar_e INNER JOIN nxsregir ON nxstar_e.cust_code = 
nxsregir.cust_code)
 INNER JOIN nxsprodr ON nxsregir.prod_id = nxsprodr.prod_code)
 ON nxsnotes.note_id = nxstar_e.tar_num
GROUP BY nxstar_e.tar_num, nxstar_e.bus_name, nxstar_e.tar_status,
   nxstar_e.cust_code, nxstar_e.assigned_to, 
nxstar_e.synopsis,
   nxstar_e.phone, nxstar_e.contact, nxstar_e.symptom_code,
   nxstar_e.entered_date
  HAVING ((nxstar_e.tar_status <>'CLOSED') AND 
(nxstar_e.assigned_to = '#tech#'))
ORDER BY nxstar_e.tar_num


Hi...

I sent the above queries to the list...but I haven't recieved anything from
the list, no mail at all from the list all day long...so Im assuming 
that the list
is down AGAIN.  In the hopes that its just a portion of the list that's down...
the portion that Im inIm resending this.

In a previous msg I asked what was wrong with query #2...well I 
figured out that
I was missing a closing ")" in the HAVING statement.  All fine and good...but
didn't solve my problem of why one parameter is getting passed to the first
query (#1) and yet query #2 gives me an error of :

"expression result cannot be converted into a string"

Im figuring this is a simple syntax error...right ?  wrong.  In CF Studio's
SQL builder...this query returns results with no errors.

Ok...so whats wrong ?

Please respond to me privately at [EMAIL PROTECTED]

Miles.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: First JSP Fusebox Site?

2000-08-09 Thread Kevin Miller


Just out of curiosity, what criteria did you use to determine what
sections were written in JSP versus CF?

Kevin

>>> [EMAIL PROTECTED] 08/09/00 01:23PM >>>
CF is in the company and HELP areas.  Also, over the next 3 weeks there

will be 3 major new areas in CF.

j

At 04:13 PM 8/9/2000 -0400, Mike Amburn wrote:
>where are you using CF? all i saw were JSP pages...
>
> > -Original Message-
> > From: !jeff! [mailto:[EMAIL PROTECTED]] 
> > Sent: Wednesday, August 09, 2000 3:42 PM
> > To: Recipient list suppressed
> > Subject: First JSP Fusebox Site?
> >
> >
> > http://BIGWORDS.com launched a new fuseboxed site this morning,
> > using a JSP
> > / J2EE / CF combo running Weblogic and Cold Fusion on a combination
of NT
> > and Sun machines.
> >
> > The site is written completely in FUSEBOX.  It has been for a long
time,
> > but we just re-launched the site using JSP for a large portion of
> > the site,
> > and we used the fusebox standard, with some additional file types
which I
> > plan to recommend to fusebox.org.
> >
> > Please don't take this email as spam, i'm not asking any of you to
buy
> > anything.  I simply wanted to show off a new fusebox site which
uses a
> > combination of CF and JSP/J2EE, and which (IMHO) fluidly translates
the
> > concepts of fusebox to JSP/J2EE.
> >
> > And I'd be happy to hear your feedback, or answer questions.
> >
> > Jeff Sherwood
> > Founder / CIO / Director of Web Site Design
> > BIGWORDS.com
> >
> >
> >
> > !j!
> >
> > The mark of mediocrity is searching for the precedent.
> >
> > !jeff! sherwood Director of BIGWORDS.com Web Site Design /
JEDI
> >BIGWORDS.com
worker#2
> > .r.e.c.o.v.e.r.e.d.n.e.t.s.c.a.p.e.u.s.e.r. . . .
415.543.1400.x300
> >
> > --
> > 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ 
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf

>_talk or send a message to [EMAIL PROTECTED] with
>'unsubscribe' in the body.
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ 
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe'
in 
>the body.

!j!

The mark of mediocrity is searching for the precedent.

!jeff! sherwood Director of BIGWORDS.com Web Site Design / JEDI
   BIGWORDS.com worker#2
.r.e.c.o.v.e.r.e.d.n.e.t.s.c.a.p.e.u.s.e.r. . . . 415.543.1400.x300

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ 
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Dave Watts

> > Put this code in your application.cfm file. It will kill the session
> > variables when the user closes the browser:
> >
> > 
> > 
> >   
> >   
> >   
> >   
> > 
...
> I don't think this will do what we are hoping it will. It looks to
> me as if all it's doing is testing to see if the session is open,
> if it is it's reading the values from the cookies and then putting
> them back in there.am I completely off the mark here??

The above code is overwriting the cookies that CF automatically creates,
which are persistent beyond the life of the browser instance, with cookies
that will be destroyed when the browser is closed. Thus, when a user closes
the browser, they destroy their link to the session variables on the server,
effectively ending their session.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: VERY SAD (was )

2000-08-09 Thread Dave Watts

> We tried using the applets for a couple of internet
> applications and had very limited success. The applets
> would load sporadically on end user's machines. Netscape
> would rarely display the applets. IE was much better but
> sometimes pages would require refreshes to get the applets
> to load. We haven't tried the applets since early 4.01 so
> they may have been improved since.

That's interesting. We've never used them for real internet applications,
but we used to use them quite a bit for intranet applications, and were very
successful in that regard. For example, we deployed an application where
there were several thousand clients, all using Netscape 3 or 4, and no one
reported that as a problem.

However, I'd agree that they're not suitable for non-controlled
environments, as people might not have Java enabled, or might not have
virtual machines, or might have a Java-killing firewall setup.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: cffile

2000-08-09 Thread Mooner Ent

Beware that NT has file caching which will confuse the issue, esp under
heavy load. Files that have been deleted are still there for minutes at a
time, file locking and other little "oh by the way"s.

Rick


- Original Message -
From: "Phim" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 08, 2000 11:16 PM
Subject: RE: cffile


> thanks a lot Jim
>
> regards,
> Phim
>
> -Original Message-
> From: Jim McAtee [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 12:59 PM
> To: [EMAIL PROTECTED]
> Subject: Re: cffile
>
>
> Use the FileExists() function or the CFDIRECTORY tag to see if the file
> exists after doing the delete.
>
> Jim
>
>
> -Original Message-
> From: Phim <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
> Date: Tuesday, August 08, 2000 11:39 PM
> Subject: cffile
>
>
> >Hi Everyone,
> >
> >
> >I use CFFILE Tag for delete a file in server ,
> >
> >Can we check action from this command ,that delete file successfull or
> not ?
> >
> >if can not delete a  file becasue this file being in use by another
> process
> >, and it will return error .
> >
> >Can we check action ofFILE="full_path_name"> ?.
> >
> >Regards,
> >
> >Phim
>
> --
--
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: "Need your help desperately..."

2000-08-09 Thread Gregory Gooden (Annex)


I got it.. and was appropriately irritated.. grin

Gregory


--- 
annex.com, Inc. - http://www.annex.com/ 
--- 
- If you EcoBuild it, they will come. - 
- http://www.ecobuilder.com/ - 
--- 


> -Original Message-
> From: Karl Simanonok [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 2:11 PM
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED];
> [EMAIL PROTECTED]; [EMAIL PROTECTED];
> [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: "Need your help desperately..."
> 
> 
> This is a multi-part message in MIME format.
> --70D9BE1E0E01862BA9F0B918
> Content-Type: text/plain; charset=us-ascii
> Content-Transfer-Encoding: 7bit
> 
> I don't know this person so it appears to be Spam email that 
> I got from
> him.  I therefore wonder how many others have received a 
> similar request
> to help him cheat on the CF certification exam.  I find it very
> irritating that the value of my own efforts at getting honestly
> certifiied can be so easily diluted by cheaters.  This character and
> others like him should be blacklisted somehow and prevented from even
> taking the exam.  (I bet he cheated on his Microsoft and Prosoft exams
> too).
> 
> Regards,
> 
> Karl Simanonok
> 
> Original message to me:
> 
> 
> 
> 
> --70D9BE1E0E01862BA9F0B918
> Content-Type: message/rfc822
> Content-Transfer-Encoding: 7bit
> Content-Disposition: inline
> 
> Received: from web2305.mail.yahoo.com [128.11.68.80] by 
> advantasolutions.com
>   (SMTPD32-4.07) id A70F1990104; Wed, 09 Aug 2000 09:30:07 PST
> Message-ID: <[EMAIL PROTECTED]>
> Received: from [202.131.101.50] by web2305.mail.yahoo.com; 
> Wed, 09 Aug 2000 09:30:19 PDT
> Date: Wed, 9 Aug 2000 09:30:19 -0700 (PDT)
> From: dilip jumani <[EMAIL PROTECTED]>
> Subject: Need your help desperately...
> To: [EMAIL PROTECTED]
> MIME-Version: 1.0
> Content-Type: text/plain; charset=us-ascii
> X-Mozilla-Status2: 
> 
> Hi.
> 
> I am Dilip Jumani working as a Software Consultant.
> 
> I want to clear the ACPP(Allaire Certified
> Professional Program) exam. For that I need your help.
> 
> If you have attended any of the training on Cold
> Fusion and have any material or if you have questions
> or dumps for the exam then please send me those. I
> will appreciate it very much.
> 
> So far, I have cleared Microsoft and Prosoft exams.
> Please let me know if I can be helpful to you anyway.
> 
> Expecting a positive response from you.
> 
> Email id [EMAIL PROTECTED]
>[EMAIL PROTECTED]
> 
> Thanking you,
> Dilip.
> 

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: [OT- no it's not, a lot of CF sites are hosted there.] My RANT against Interland.

2000-08-09 Thread Gregory Gooden (Annex)


In possible defense of them... (although I've never done business with
them)...

All MY servers were open to attack (we host our own stuff, but have quite a
few people we HOST cf for as well) as well, and a few customers contacted me
about it and we had it all fixed in less than 4 hours..

BUT... We're a small company... Interland MIGHT be one of those companies
with servers all over various co-located spots, and larger companies don't
have the flexibility to go "making changes" right and left.. They have to be
ready for rollback plans.. What if some of their customers are using HTR?
What if they have a policy about applying service packs or hotfixes to
PRODUCTION machines (we do, and we're small!).

The only reason we were able to respond so fast is because we know our
customerbase (being small), and were able to use the quick fix.. disable
HTR..

Gregory


--- 
annex.com, Inc. - http://www.annex.com/ 
--- 
- If you EcoBuild it, they will come. - 
- http://www.ecobuilder.com/ - 
--- 


> -Original Message-
> From: Mooner Ent [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 2:11 PM
> To: [EMAIL PROTECTED]
> Subject: [OT- no it's not, a lot of CF sites are hosted 
> there.] My RANT
> against Interland.
> 
> 
> For the many reason Interland bites, as all company who spend more on
> advertising than they do customer service, here's the best one yet.
> 
> Last week when the very large IIS security hole (+.htr) was 
> discussed on
> this very list, I called Interland to warn them that all 
> their servers where
> wide open to attack.  I even had my call bumped up to the 
> highest person in
> the company that would take the call.
> 
> What was their reaction, give it a couple days! I asked that 
> my sites be
> fixed asap, no dice. Now we're approaching a week later and 
> every site on
> Interlands NT boxes are still wide open, even their own corp site.
> 
> The person on the phone had two gem comments:
> 1) "with all do respect who would want to hack your site?"
> 2) don't worry the sql databases are protected, they have 
> passwords! After I
> explained to him the passwords are in the code, he said "oh".
> 
> My sites are moving this week and never again will Interland 
> see another one
> of my many thousands of dollars a quarter.
> 
> While I'm at it, Webtrend reports for last month are now 9 
> days late and
> counting. I even had the tech support people run them a few 
> days ago, and
> still no reports. Try explaining that to the folks who sign 
> the checks.
> 
> With love,
> 
> Rick
> 
> 
> 
> 
> _
> Do You Yahoo!?
> Get your free @yahoo.com address at http://mail.yahoo.com
> 
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list
s/cf_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Wait while system initializes...

2000-08-09 Thread Helge Hetland

We have a solution where we initially connects to an Oracle DB source if the
users client variable doesn't exists (initial login).

The check for this is done in application.cfm:


blabla




Is it possible to notify the user of this loading with a popup or something
else?

 will not work as the page hasn't loaded yet, but if it's
possible to open a window with the "please wait message" that will close
when application.cfm has finished doing it's initial stuff??

Thanks, Helge
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: "Need your help desperately..."

2000-08-09 Thread S R

I agree, you should see how many people lie about having a college degree 
when applying for jobs while I busted my ass for 4 years. Some people have 
nerve!


>From: Karl Simanonok <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>, 
>   [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], 
>   [EMAIL PROTECTED], [EMAIL PROTECTED], 
>[EMAIL PROTECTED], 
>[EMAIL PROTECTED]
>Subject: "Need your help desperately..."
>Date: Wed, 09 Aug 2000 14:10:58 -0700
>
>This is a multi-part message in MIME format.
>--70D9BE1E0E01862BA9F0B918
>Content-Type: text/plain; charset=us-ascii
>Content-Transfer-Encoding: 7bit
>
>I don't know this person so it appears to be Spam email that I got from
>him.  I therefore wonder how many others have received a similar request
>to help him cheat on the CF certification exam.  I find it very
>irritating that the value of my own efforts at getting honestly
>certifiied can be so easily diluted by cheaters.  This character and
>others like him should be blacklisted somehow and prevented from even
>taking the exam.  (I bet he cheated on his Microsoft and Prosoft exams
>too).
>
>Regards,
>
>Karl Simanonok
>
>Original message to me:
>
>
>
>
>--70D9BE1E0E01862BA9F0B918
>Content-Type: message/rfc822
>Content-Transfer-Encoding: 7bit
>Content-Disposition: inline
>
>Received: from web2305.mail.yahoo.com [128.11.68.80] by 
>advantasolutions.com
>   (SMTPD32-4.07) id A70F1990104; Wed, 09 Aug 2000 09:30:07 PST
>Message-ID: <[EMAIL PROTECTED]>
>Received: from [202.131.101.50] by web2305.mail.yahoo.com; Wed, 09 Aug 2000 
>09:30:19 PDT
>Date: Wed, 9 Aug 2000 09:30:19 -0700 (PDT)
>From: dilip jumani <[EMAIL PROTECTED]>
>Subject: Need your help desperately...
>To: [EMAIL PROTECTED]
>MIME-Version: 1.0
>Content-Type: text/plain; charset=us-ascii
>X-Mozilla-Status2: 
>
>Hi.
>
>I am Dilip Jumani working as a Software Consultant.
>
>I want to clear the ACPP(Allaire Certified
>Professional Program) exam. For that I need your help.
>
>If you have attended any of the training on Cold
>Fusion and have any material or if you have questions
>or dumps for the exam then please send me those. I
>will appreciate it very much.
>
>So far, I have cleared Microsoft and Prosoft exams.
>Please let me know if I can be helpful to you anyway.
>
>Expecting a positive response from you.
>
>Email id [EMAIL PROTECTED]
>[EMAIL PROTECTED]
>
>Thanking you,
>Dilip.
>
>__
>Do You Yahoo!?
>Kick off your party with Yahoo! Invites.
>http://invites.yahoo.com/
>
>
>--70D9BE1E0E01862BA9F0B918--
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



"Need your help desperately..."

2000-08-09 Thread Karl Simanonok

This is a multi-part message in MIME format.
--70D9BE1E0E01862BA9F0B918
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

I don't know this person so it appears to be Spam email that I got from
him.  I therefore wonder how many others have received a similar request
to help him cheat on the CF certification exam.  I find it very
irritating that the value of my own efforts at getting honestly
certifiied can be so easily diluted by cheaters.  This character and
others like him should be blacklisted somehow and prevented from even
taking the exam.  (I bet he cheated on his Microsoft and Prosoft exams
too).

Regards,

Karl Simanonok

Original message to me:




--70D9BE1E0E01862BA9F0B918
Content-Type: message/rfc822
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Received: from web2305.mail.yahoo.com [128.11.68.80] by advantasolutions.com
  (SMTPD32-4.07) id A70F1990104; Wed, 09 Aug 2000 09:30:07 PST
Message-ID: <[EMAIL PROTECTED]>
Received: from [202.131.101.50] by web2305.mail.yahoo.com; Wed, 09 Aug 2000 09:30:19 
PDT
Date: Wed, 9 Aug 2000 09:30:19 -0700 (PDT)
From: dilip jumani <[EMAIL PROTECTED]>
Subject: Need your help desperately...
To: [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mozilla-Status2: 

Hi.

I am Dilip Jumani working as a Software Consultant.

I want to clear the ACPP(Allaire Certified
Professional Program) exam. For that I need your help.

If you have attended any of the training on Cold
Fusion and have any material or if you have questions
or dumps for the exam then please send me those. I
will appreciate it very much.

So far, I have cleared Microsoft and Prosoft exams.
Please let me know if I can be helpful to you anyway.

Expecting a positive response from you.

Email id [EMAIL PROTECTED]
 [EMAIL PROTECTED]

Thanking you,
Dilip.

__
Do You Yahoo!?
Kick off your party with Yahoo! Invites.
http://invites.yahoo.com/


--70D9BE1E0E01862BA9F0B918--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT eWebeditPro & CFML

2000-08-09 Thread Dan O'Keefe

Duane,

Here is the best way that I can find to accomplish this.

Create the eWebEditPro variable in the editor, and in places where the CFML
was going to go, insert a place marker, such as
%location1%, %location2%, etc Then when it comes time for CF to display
the output after it is retrieved from the database, perform the required
replace functions on the place markers as in
. After all of
the replace functions have been performed on all of the place markers,
simply display the value of the variable, and your dynamic data is enclosed
within.

There might be a better way, but no that I can think of at the moment. This
way allows all of your formatting to stay in place and the place markers are
already there for the data to go into.

Let me know what you think.

Dan

--
Dan O'Keefe
TriPoint Technologies
[EMAIL PROTECTED]
954.501.3113

-> -Original Message-
-> From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
-> Sent: Wednesday, August 09, 2000 8:39 AM
-> To: [EMAIL PROTECTED]
-> Subject: RE: OT eWebeditPro & CFML
->
->
-> I haven't tried this personally, but using the evaluate function *might*
-> work.
->
-> #evaluate("#q_myquery.htmlfield#")#
->
-> You might have to escape any #'s in the html with ##'s
->
-> If this works please let me know so I can add a knowledgebase
-> article on the
-> method.
->
-> Cheers,
-> Duane Boudreau,
-> eMPower Project Manager
-> Director, Web Technologies
-> Ektron, Inc.
-> http://www.ektron.com
-> 5 Northern Blvd, Suite 6
-> Amherst, NH 03031
-> Tel: 603-594-0249 x114
-> Fax: 603-594-0258
->
->
-> > -Original Message-
-> > From: Dan O'Keefe [mailto:[EMAIL PROTECTED]]
-> > Sent: Monday, August 07, 2000 8:03 PM
-> > To: CF-Talk
-> > Subject: OT eWebeditPro & CFML
-> >
-> >
-> > Anybody on the list using eWebEditPro and figured out a way to
-> embed CFML
-> > within the eWebEditPro editor, save it, and then display the
-> results. I am
-> > trying to do something like:
-> >
-> > In a eWebEditPro editing session:
-> >
-> > formatted static text..
-> >
-> > #phonenum#
-> >
-> > Some more formatted static text 
-> >
-> > Then eWebEditPro saves all of this and I store it in a table in
-> > SQL. Later,
-> > query the table, and display the contents of that field, but I
-> want CF to
-> > interpret the CFML. If I try wrapping an evaluate function
-> around the var,
-> > it errors out on the first '<' that it comes across.
-> >
-> > Thanks
-> >
-> > --
-> > Dan O'Keefe
-> > TriPoint Technologies
-> > [EMAIL PROTECTED]
-> > 954.501.3113
-> >
-> > --
-> > 
-> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
-> > To Unsubscribe visit
-> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
-> > _talk or send a message to [EMAIL PROTECTED] with
-> > 'unsubscribe' in the body.
->
-> -
-> -
-> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
-> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



[OT- no it's not, a lot of CF sites are hosted there.] My RANT against Interland.

2000-08-09 Thread Mooner Ent

For the many reason Interland bites, as all company who spend more on
advertising than they do customer service, here's the best one yet.

Last week when the very large IIS security hole (+.htr) was discussed on
this very list, I called Interland to warn them that all their servers where
wide open to attack.  I even had my call bumped up to the highest person in
the company that would take the call.

What was their reaction, give it a couple days! I asked that my sites be
fixed asap, no dice. Now we're approaching a week later and every site on
Interlands NT boxes are still wide open, even their own corp site.

The person on the phone had two gem comments:
1) "with all do respect who would want to hack your site?"
2) don't worry the sql databases are protected, they have passwords! After I
explained to him the passwords are in the code, he said "oh".

My sites are moving this week and never again will Interland see another one
of my many thousands of dollars a quarter.

While I'm at it, Webtrend reports for last month are now 9 days late and
counting. I even had the tech support people run them a few days ago, and
still no reports. Try explaining that to the folks who sign the checks.

With love,

Rick




_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: problem with query.

2000-08-09 Thread Deanna L. Schneider

I think what it means is that you can't use <> with a literal string. <>
evaluates numbers. I think you want != (or is that =!, I always have to try
it both was).

-d




Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Query Delete?

2000-08-09 Thread Planet CF

The need for a QueryDeleteColumn or QueryDeleteRow arises in situations
where one wants to manipulate the query due to various reasons.

One of them could something like applying security on the query. This means
that the user does not priviledges to view all the rows/columns of the query
(which is a join). In such a case you would want to delete data which is
secure. One can say that incorporate that in the 'select' itself. However
this cannot be done bcoz some users have override security priviledges,
meaning that security does not apply for such users.

The bottomline is that, if there is a QueryAddColumn then why not a
QueryDeleteColumn and also QueryDeleteRow.

Kedar Desai
Differential Technologies
Fairfax, VA


-Original Message-
From: David E. Crawford [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 10:39 AM
To: [EMAIL PROTECTED]
Subject: Re: Query Delete?


This is a multi-part message in MIME format.

--=_NextPart_000_0175_01C00146.6E5DE680
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

Query Delete?You could relatively easily do it using the QueryNew() =
function and looping over. But what would be the point?  Just don't =
selec the column in the first place.

DC

  - Original Message -=20
  From: Planet CF=20
  To: [EMAIL PROTECTED]=20
  Sent: Tuesday, August 08, 2000 14:34
  Subject: Query Delete?


  Hi,=20

  Is there a custom tag somewhere out there, that=20
  deletes a column from  a query?=20

  Thanks=20
  Kedar Desai=20
  Differential Technologies=20
  Fairfax, VA=20



  __=20
  Do You Yahoo!?=20
  Kick off your party with Yahoo! Invites.=20
  http://invites.yahoo.com/=20
  =
-=
-=20
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
  To Unsubscribe visit =
http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_ta=
lk or send a message to [EMAIL PROTECTED] with =
'unsubscribe' in the body.


--=_NextPart_000_0175_01C00146.6E5DE680
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable


Query Delete?





You could relatively easily do it using =
the=20
QueryNew() function and looping over. But what would be the point?  =
Just=20
don't selec the column in the first place.
 
DC
 

  - Original Message - 
  From:=20
  mailto:[EMAIL PROTECTED]" =
[EMAIL PROTECTED]>Planet CF=20
  
  To: mailto:[EMAIL PROTECTED]"=20
  [EMAIL PROTECTED]>[EMAIL PROTECTED] 
  Sent: Tuesday, August 08, 2000=20
14:34
  Subject: Query Delete?
  
  Hi, 
  Is there a custom tag somewhere out there, =
that=20
  deletes a column from  a query? 
  Thanks Kedar Desai =
Differential Technologies Fairfax, =
VA=20
  
  __=20
  Do You Yahoo!? Kick off =
your party=20
  with Yahoo! Invites. http://invites.yahoo.com/"=20
  target=3D_blank>http://invites.yahoo.com/ =
--=20
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
  =
target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
  To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3D=
lists/cf_talk"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&am=
p;body=3Dlists/cf_talk=20
  or send a message to [EMAIL PROTECTED] with =
'unsubscribe' in=20
  the body.

--=_NextPart_000_0175_01C00146.6E5DE680--


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFMAIL and exchange server

2000-08-09 Thread Howie Hamlin

- Original Message -
From: David Green <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 10:54 AM
Subject: Re: CFMAIL and exchange server


> Hello Howie
>
> Am new to CF.  I started this thread and still confused where I am getting
a
> 15 minutue delay sending email from CF through Exchange. If you don't
> mind I have a couple of questions.
>
> 1st I Did a quick look for this 1 min setting your talking about.Could
> you tell me where it is for I check mine.  I been through the admin  and
did
> not see it but have not search the docs or website to find if it's in some
> file out there.
>

This setting is only for cf4.5.1 (maybe 4.5 also but I'm not sure).  It's
under miscellaneous/mail/Spool Interval.

> 2nd In on post you talk about the delay in exchange and about how in sends
> mail.  Is it a fair test comparing CF to how mail goes from outlook
express.
> >From that software  sending a message I get my messages in less then a
> minute.   This is even the case when sending to address that is not part
of
> the exchange server.   So is it fair to compare the less then 1 minute for
> out look against the 15 minutes for my CF application.
>

Yes, that is a fair comparison.  Both Outlook Express and CF would
communicate with the Exchange server via SMTP.  So, if you're only seeing a
delay on CFMail then you would have to look at CFMail.  Only deficiency with
CFMail is that mail is sent from the mail spool serially using a single
connection to the mail server.  So, if you have a lot of mail in the spool
then mail delivery would be delayed.  It's the same as if you were sending a
lot of outgoing mail from Outlook Express.

Regards,

Howie


> Thanks for the help learning lots
> David
>
>
> - Original Message -
> From: "Howie Hamlin" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, August 08, 2000 7:14 PM
> Subject: Re: CFMAIL and exchange server
>
>
> > ColdFusion checks the outgoing mail folder every minute...that's what
the
> > delay is.  In 4.5 you can lower the checking interval to a minimum of 15
> > seconds.
> >
> > Regards,
> >
> > Howie
> >
> > - Original Message -
> > From: Jim McAtee <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, August 08, 2000 8:39 PM
> > Subject: Re: CFMAIL and exchange server
> >
> >
> > > Really?  What is the one minute delay?  I've always gotten mail almost
> > > instantly from templates using CFMAIL. (CF 3.x and 4.0.x)
> > >
> > > Jim
> > >
> > >
> > > -Original Message-
> > > From: Howie Hamlin <[EMAIL PROTECTED]>
> > > To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
> > > Date: Tuesday, August 08, 2000 4:00 PM
> > > Subject: Re: CFMAIL and exchange server
> > >
> > >
> > > >There's an inherent 1 minute delay in mail sending from CFMail
> > > (although in
> > > >4.5 you can lower the setting to 15 seconds).  Add to that the delay
> > > for the
> > > >mail server receiving and resending the mail and you could have a
delay
> > > of
> > > >15 minutes.  Also, CFMail sends mail serially which means that all
> > > queued
> > > >mail is sent one at a time...
> > > >
> > > >Regards,
> > > >
> > > >Howie Hamlin
> > > >--
> > > >inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668
> > > >www.CoolFusion.com
> > > >
> > > >Please vote for iMS in the Most Innovative category here:
> > > >*** http://www.sys-con.com/ColdFusion/readerschoice2000/ ***
> > > >
> > > >Check out inFusion Mail Server - the world's most configurable email
> > > server
> > > >
> >
> >
>
> --
> 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: VERY SAD (was )

2000-08-09 Thread David Green

I have had a problem with AOL browser and the cftree/cfgrid.  But for us the
CFGRID works great to display large amounts of data.  Letting the users
change the sort of the view and displaying all the data at once is a big
plus.   My question now would be are there people who sell staple applets
that do similar stuff.  For me I would love to get something like CFGRID
that would allow me highlight/select multiple rows and return some value of
the selection.   There are times I need to display 1000's or records at once
and CFGRID has work perfect for that.  Except in AOL's browser.

Thanks
David

- Original Message -
From: "Duane Boudreau" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 12:30 PM
Subject: RE: VERY SAD (was )


> > Duane,
> >
> > We've used  and  in several relatively simple
applications
> > and haven't run into any problems. When you say "unstable," what do you
> > mean? Is there something we should be watching for? What I think of when
I
> > hear "unstable" is, I imagine, probably not what you meant.
>
> We tried using the applets for a couple of internet applications and had
> very limited success. The applets would load sporadically on end user's
> machines. Netscape would rarely display the applets. IE was much better
but
> sometimes pages would require refreshes to get the applets to load. We
> haven't tried the applets since early 4.01 so they may have been improved
> since.
>
> Duane
>
>
> > > Very sad to understand that list is swiftly rush down.
> > > Only one year ago you was able to find answer for any of your
> > > questions here.
> > > But things are changed.
> > > Very sad to understand that Allaire Corporation's product evangelist
> > > uses this list only for advertises and unable to explain how his
> > > child works.
> > >
> > >
> > > Wednesday, August 09, 2000, 3:22:11 PM, you wrote:
> > >
> > > Alex> cf-talk,
> > >
> > > Alex>   Can somebody help me? I have difficulties trying to
> > > validate user's
> > > Alex>   input in cfgrid. In fact I can't understand how I can
> > validate 15
> > > Alex>   columns with 15 validation rules.
> > >
> > > Alex>   Can somebody help me?
> >
> > You are probably not getting answers for this because VERY few people
use
> > Allaire's applets. They are highly unstable and because of that most
users
> > shy away from usage.
> >
> > Duane Boudreau,
> > eMPower Project Manager
> > Director, Web Technologies
> > Ektron, Inc.
> > http://www.ektron.com
> > 5 Northern Blvd, Suite 6
> > Amherst, NH 03031
> > Tel: 603-594-0249 x114
> > Fax: 603-594-0258
> >
> > --
> > --
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
> > the body.
> >
> > --
> > 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re[2]: VERY SAD (was )

2000-08-09 Thread Alex Puritche

Duane,
  I have no problems with Allaire's applets.
  In fact I write application for private use, no more than 100
  users/year will have access to it.
  But anyway, very sad to understand that I need to step on the
  rake each time I want to do something off-centre.
  
Wednesday, August 09, 2000, 9:36:39 PM, you wrote:

>> Very sad to understand that list is swiftly rush down.
>> Only one year ago you was able to find answer for any of your
>> questions here.
>> But things are changed.
>> Very sad to understand that Allaire Corporation's product evangelist
>> uses this list only for advertises and unable to explain how his
>> child works.
>>
>>
>> Wednesday, August 09, 2000, 3:22:11 PM, you wrote:
>>
>> Alex> cf-talk,
>>
>> Alex>   Can somebody help me? I have difficulties trying to
>> validate user's
>> Alex>   input in cfgrid. In fact I can't understand how I can validate 15
>> Alex>   columns with 15 validation rules.
>>
>> Alex>   Can somebody help me?

Duane> You are probably not getting answers for this because VERY few people use
Duane> Allaire's applets. They are highly unstable and because of that most users
Duane> shy away from usage.

Duane> Duane Boudreau,
Duane> eMPower Project Manager
Duane> Director, Web Technologies
Duane> Ektron, Inc.
Duane> http://www.ektron.com
Duane> 5 Northern Blvd, Suite 6
Duane> Amherst, NH 03031
Duane> Tel: 603-594-0249 x114
Duane> Fax: 603-594-0258

Duane> --
Duane> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Duane> To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.


-- 
 Regards,
 Alexmailto:[EMAIL PROTECTED]


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: First JSP Fusebox Site?

2000-08-09 Thread !jeff!

CF is in the company and HELP areas.  Also, over the next 3 weeks there 
will be 3 major new areas in CF.

j

At 04:13 PM 8/9/2000 -0400, Mike Amburn wrote:
>where are you using CF? all i saw were JSP pages...
>
> > -Original Message-
> > From: !jeff! [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, August 09, 2000 3:42 PM
> > To: Recipient list suppressed
> > Subject: First JSP Fusebox Site?
> >
> >
> > http://BIGWORDS.com launched a new fuseboxed site this morning,
> > using a JSP
> > / J2EE / CF combo running Weblogic and Cold Fusion on a combination of NT
> > and Sun machines.
> >
> > The site is written completely in FUSEBOX.  It has been for a long time,
> > but we just re-launched the site using JSP for a large portion of
> > the site,
> > and we used the fusebox standard, with some additional file types which I
> > plan to recommend to fusebox.org.
> >
> > Please don't take this email as spam, i'm not asking any of you to buy
> > anything.  I simply wanted to show off a new fusebox site which uses a
> > combination of CF and JSP/J2EE, and which (IMHO) fluidly translates the
> > concepts of fusebox to JSP/J2EE.
> >
> > And I'd be happy to hear your feedback, or answer questions.
> >
> > Jeff Sherwood
> > Founder / CIO / Director of Web Site Design
> > BIGWORDS.com
> >
> >
> >
> > !j!
> >
> > The mark of mediocrity is searching for the precedent.
> >
> > !jeff! sherwood Director of BIGWORDS.com Web Site Design / JEDI
> >BIGWORDS.com worker#2
> > .r.e.c.o.v.e.r.e.d.n.e.t.s.c.a.p.e.u.s.e.r. . . . 415.543.1400.x300
> >
> > --
> > 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
>_talk or send a message to [EMAIL PROTECTED] with
>'unsubscribe' in the body.
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

!j!

The mark of mediocrity is searching for the precedent.

!jeff! sherwood Director of BIGWORDS.com Web Site Design / JEDI
   BIGWORDS.com worker#2
.r.e.c.o.v.e.r.e.d.n.e.t.s.c.a.p.e.u.s.e.r. . . . 415.543.1400.x300

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Calculating sums of numbers

2000-08-09 Thread S R

Hello,

I have this system that is going to allow people to order Xmas cards. I am 
wondering how to go about 2 things.

1. They can only order in increments of 50. Is there a function out there 
that can help me with this?

2. I need to tally up and give a grand total at the end. Would an array be 
the best answer for this?

Thanks

SR

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CF, ODBC and 64k data

2000-08-09 Thread Duane Boudreau

Hi All,

Is there some imposed limit which would cause CF accessing an MSSQL7 db thru
ODBC? I am trying to submit 64k + of data via a post but the data is getting
truncated. Has anyone else ever seen this? Is there a work around or fix?

Thanks,
Duane Boudreau,
eMPower Project Manager
Director, Web Technologies
Ektron, Inc.
http://www.ektron.com
5 Northern Blvd, Suite 6
Amherst, NH 03031
Tel: 603-594-0249 x114
Fax: 603-594-0258

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: First JSP Fusebox Site?

2000-08-09 Thread Mike Amburn

where are you using CF? all i saw were JSP pages...

> -Original Message-
> From: !jeff! [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 3:42 PM
> To: Recipient list suppressed
> Subject: First JSP Fusebox Site?
>
>
> http://BIGWORDS.com launched a new fuseboxed site this morning,
> using a JSP
> / J2EE / CF combo running Weblogic and Cold Fusion on a combination of NT
> and Sun machines.
>
> The site is written completely in FUSEBOX.  It has been for a long time,
> but we just re-launched the site using JSP for a large portion of
> the site,
> and we used the fusebox standard, with some additional file types which I
> plan to recommend to fusebox.org.
>
> Please don't take this email as spam, i'm not asking any of you to buy
> anything.  I simply wanted to show off a new fusebox site which uses a
> combination of CF and JSP/J2EE, and which (IMHO) fluidly translates the
> concepts of fusebox to JSP/J2EE.
>
> And I'd be happy to hear your feedback, or answer questions.
>
> Jeff Sherwood
> Founder / CIO / Director of Web Site Design
> BIGWORDS.com
>
>
>
> !j!
>
> The mark of mediocrity is searching for the precedent.
>
> !jeff! sherwood Director of BIGWORDS.com Web Site Design / JEDI
>BIGWORDS.com worker#2
> .r.e.c.o.v.e.r.e.d.n.e.t.s.c.a.p.e.u.s.e.r. . . . 415.543.1400.x300
>
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Link Won't resolve

2000-08-09 Thread Chapman, Katrina

The only thing I can suggest is that you have them send you a screen shot.
Then you'll get the exact URL they're using and the exact error message.

--K

-Original Message-
From: Sim Graves [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 12:39 PM
To: [EMAIL PROTECTED]
Subject: Re: Link Won't resolve


Hi Katrina,

They are getting a system error from IE 4.0 saying that it can't resolve
"EmployLinkNumber=971819831" it doesn't include the other information in
the URL.

That's all I can get from them.

Sim


"Chapman, Katrina" wrote:
> 
> Are they getting a 404 message?  Or something else?
> 
> --K
> 
> -Original Message-
> From: Sim Graves [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 11:42 AM
> To: [EMAIL PROTECTED]
> Subject: Link Won't resolve
> 
> I'm sending a link to a CFM page with a parameter in the URL like the
> example below:
> 
> http://bmg.com/application/employments.cfm?EmployLinkNumber=971819831
> 
> Sorry, I could not give a real link due to keeping up security for my
> client. The link won't resolve for my clients on IE 4.0.  I can't
> reproduce their error.  It sounds like IE is ignoring everything before
> my "=".  If you have any clues, I would greatly appreciate the help.
> These links are being sent all over the US to different offices.  I need
> to fix this before they come to get me.
> 
> TIA
> 
> Sim Graves
>

> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>

--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Link Won't resolve

2000-08-09 Thread Stephen Morse

On 9 Aug 2000, at 14:42, Sim Graves wrote:

> I'm sending a link to a CFM page with a parameter in the URL like the
> example below:
> 
> http://bmg.com/application/employments.cfm?EmployLinkNumber=971819831 
> 
> 
> Sorry, I could not give a real link due to keeping up security for my
> client. The link won't resolve for my clients on IE 4.0.  I can't
> reproduce their error.  It sounds like IE is ignoring everything
> before my "=".  If you have any clues, I would greatly appreciate the
> help. These links are being sent all over the US to different offices.
>  I need to fix this before they come to get me.

The two most likely things:

Sending the address in e-mail gives you an address on multiple 
lines, which won't work.

Spaces in the address will also cause the browsers to do strange 
things.

Hope that helps.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: VERY SAD (was )

2000-08-09 Thread Benjamin S. Rogers

>We
>haven't tried the applets since early 4.01 so they may have been improved
>since.

Heh, we haven't upgraded to 4.5 yet. Well, it's good to know other's have
experienced problems. Thanks.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



MS Proxy server and session variable swapping

2000-08-09 Thread Ken Goldstraw

Every once in a while we will experience session swapping (User 1 who is
logged in will become User 2 when User 2 logs in).  The odd part is that
only User 1 and User 2 will experience this problem and that they will only
swap with each other.

After reviewing our code, reverting to 4.01 (we upgraded to 4.51 a few weeks
a go) and looking at our network, we discovered that the problem is
temporarily solved when we flush the MS Proxy cache.

Has anyone else experienced this?  Is there a fix?  We are in the process of
planning a network redesign, proxy server will not be used in the near
future.

Thanks for your insight!

Ken Goldstraw
Cold Fusion Developer
Bigdough.com 
http://www.bigdough.com
"No, we don't sell bread or any other bakery products" ;)

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Link Won't resolve

2000-08-09 Thread Sim Graves

Hi Katrina,

They are getting a system error from IE 4.0 saying that it can't resolve
"EmployLinkNumber=971819831" it doesn't include the other information in
the URL.

That's all I can get from them.

Sim


"Chapman, Katrina" wrote:
> 
> Are they getting a 404 message?  Or something else?
> 
> --K
> 
> -Original Message-
> From: Sim Graves [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 11:42 AM
> To: [EMAIL PROTECTED]
> Subject: Link Won't resolve
> 
> I'm sending a link to a CFM page with a parameter in the URL like the
> example below:
> 
> http://bmg.com/application/employments.cfm?EmployLinkNumber=971819831
> 
> Sorry, I could not give a real link due to keeping up security for my
> client. The link won't resolve for my clients on IE 4.0.  I can't
> reproduce their error.  It sounds like IE is ignoring everything before
> my "=".  If you have any clues, I would greatly appreciate the help.
> These links are being sent all over the US to different offices.  I need
> to fix this before they come to get me.
> 
> TIA
> 
> Sim Graves
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



First JSP Fusebox Site?

2000-08-09 Thread !jeff!

http://BIGWORDS.com launched a new fuseboxed site this morning, using a JSP 
/ J2EE / CF combo running Weblogic and Cold Fusion on a combination of NT 
and Sun machines.

The site is written completely in FUSEBOX.  It has been for a long time, 
but we just re-launched the site using JSP for a large portion of the site, 
and we used the fusebox standard, with some additional file types which I 
plan to recommend to fusebox.org.

Please don't take this email as spam, i'm not asking any of you to buy 
anything.  I simply wanted to show off a new fusebox site which uses a 
combination of CF and JSP/J2EE, and which (IMHO) fluidly translates the 
concepts of fusebox to JSP/J2EE.

And I'd be happy to hear your feedback, or answer questions.

Jeff Sherwood
Founder / CIO / Director of Web Site Design
BIGWORDS.com



!j!

The mark of mediocrity is searching for the precedent.

!jeff! sherwood Director of BIGWORDS.com Web Site Design / JEDI
   BIGWORDS.com worker#2
.r.e.c.o.v.e.r.e.d.n.e.t.s.c.a.p.e.u.s.e.r. . . . 415.543.1400.x300

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Link Won't resolve

2000-08-09 Thread Sim Graves

Thanks Dana,

Yes, I checked on the line wrap even got them to cut and paste the url
into the location bar.  I'm sending the full URL plus the parameter just
like the example vis CFMAIL.  Even though we got it to run on our
version of IE 4.0 I'm thinking that may be the problem.

I'm hoping that someone here has run into this exact situation.

Thanks again, Dana,

Sim

Dana Larose wrote:
> 
> Since I just finished fixing a similar problem, I'll take a stab in the
> dark.  Are you sending url through an email?  Sometimes, an email client
> will screw up word wrapping and effectively give you something like:
> 
> http://bmg.com/application/employments.cfm?EmployLinkNumber=
> 971819831
> 
> Are you sure that EmployLinkNumber is always generated?  I.e., if it is
> selected out of a database, what are you doing if the query results 0
> results?  If the user is entering a form field, are you ensuring they enter
> a correct value?
> 
> (I know they are simple things, but I occasionally simple things like that)
> 
> Dana
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFOBJECT

2000-08-09 Thread Bill Killillay

I am getting ready to do a new project where we are going to be needing to
call an Active X object and then using the ADODB.Recordset that it returns.
I have never done this before, but I am assuming that it can be done.  Can
anybody give me an pointers or places to go and read up on it.  Thanks.

Bill

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: VERY SAD (was )

2000-08-09 Thread Duane Boudreau

> Duane,
>
> We've used  and  in several relatively simple applications
> and haven't run into any problems. When you say "unstable," what do you
> mean? Is there something we should be watching for? What I think of when I
> hear "unstable" is, I imagine, probably not what you meant.

We tried using the applets for a couple of internet applications and had
very limited success. The applets would load sporadically on end user's
machines. Netscape would rarely display the applets. IE was much better but
sometimes pages would require refreshes to get the applets to load. We
haven't tried the applets since early 4.01 so they may have been improved
since.

Duane


> > Very sad to understand that list is swiftly rush down.
> > Only one year ago you was able to find answer for any of your
> > questions here.
> > But things are changed.
> > Very sad to understand that Allaire Corporation's product evangelist
> > uses this list only for advertises and unable to explain how his
> > child works.
> >
> >
> > Wednesday, August 09, 2000, 3:22:11 PM, you wrote:
> >
> > Alex> cf-talk,
> >
> > Alex>   Can somebody help me? I have difficulties trying to
> > validate user's
> > Alex>   input in cfgrid. In fact I can't understand how I can
> validate 15
> > Alex>   columns with 15 validation rules.
> >
> > Alex>   Can somebody help me?
>
> You are probably not getting answers for this because VERY few people use
> Allaire's applets. They are highly unstable and because of that most users
> shy away from usage.
>
> Duane Boudreau,
> eMPower Project Manager
> Director, Web Technologies
> Ektron, Inc.
> http://www.ektron.com
> 5 Northern Blvd, Suite 6
> Amherst, NH 03031
> Tel: 603-594-0249 x114
> Fax: 603-594-0258
>
> --
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: file name

2000-08-09 Thread Gene Kraybill

"Jay Wigginton" <[EMAIL PROTECTED]> wrote:

> Could some please tell me the file name that if present in a directory will
> be executed after the current template...

OnRequestEnd.cfm

Gene Kraybill
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Matt Rodosky

Actually rewriting the cookies turns all cfid/tokens on the client into
session cookies (no expires attribute). This doesn't do anything to the
server side, where the sessions will eventually die off in memory. this does
mess up client variables unfortunately (leaving the cfid/token in your
datasource, while killing the cookies on the client). We use only
app/session vars, and use a login/database system for client vars so it has
not ben an issue. Sorry if this doesn't help you.

Matt

-Original Message-
From: Andy Ewings [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 11:10 AM
To: '[EMAIL PROTECTED]'
Subject: RE: CFAPPLICATION - Need some advice


Okso are you saying that when you re-write the cookie the session/client
variables are cleared?  If that is the case what happens on the server side?
If I am storing client variables in a database o the server and the user
closes their browser the record remains in the database.  When they re-visit
the site the site knows who they are (because of the cookie on their PC) and
gives them the same CFID and CFTOKEN.  Are you saying that by reassigning
these exact same values to the cookies that all of the custom Client
variables will get deleted/reset?

-Original Message-
From: Matt Rodosky [mailto:[EMAIL PROTECTED]]
Sent: 09 August 2000 17:41
To: [EMAIL PROTECTED]
Subject: RE: CFAPPLICATION - Need some advice


The code will keep session variables going as long as the browser stays
open. It will overwrite the old cfid/token when a new browser window is
opened, the result is your old session variables are killed and you start
over.

-Original Message-
From: Andy Ewings [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 10:02 AM
To: '[EMAIL PROTECTED]'
Subject: RE: CFAPPLICATION - Need some advice


I don't think this will do what we are hoping it will.  It looks to me as if
all it's doing is testing to see if the session is open, if it is it's
reading the values from the cookies and then putting them back in
there.am I completely off the mark here??

-Original Message-
From: Matt Rodosky [mailto:[EMAIL PROTECTED]]
Sent: 09 August 2000 16:27
To: [EMAIL PROTECTED]
Subject: RE: CFAPPLICATION - Need some advice


Put this code in your application.cfm file. It will kill the session
variables when the user closes the browser:



  
  
  
  


-Original Message-
From: Miguel [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 9:08 AM
To: '[EMAIL PROTECTED]'
Subject: RE: CFAPPLICATION - Need some advice


There's none, either in asp nor php4
Javascript is the way

Miguel Gonzalez
www.ibcmass.com
mailto:[EMAIL PROTECTED]


> -Mensaje original-
> De: Andy Ewings [mailto:[EMAIL PROTECTED]]
> Enviado el: miércoles 9 de agosto de 2000 14:52
> Para: '[EMAIL PROTECTED]'
> Asunto: RE: CFAPPLICATION - Need some advice
>
>
> Session management is a bit of a nightmare in CF in my
> opinion.  If the user
> closes their browser their session doesn't expire
> automatically.  One only
> way to force it to expire is to use the 'OnUnload' event of
> the browser to
> trigger some Java Script which ends the session.
>
> If anyone else has any other ideas on this I'd love to hear them.
>
>
> -Original Message-
> From: Gavin Myers [mailto:[EMAIL PROTECTED]]
> Sent: 09 August 2000 13:41
> To: '[EMAIL PROTECTED]'
> Subject: CFAPPLICATION - Need some advice
>
>
> I've decided to take a look at application.cfm too see what I
> can gather.
> I've never really used it before
>
> Now in the simplest form:
>
> application.cfm
> 
>
>  sessionmanagement="Yes"
> setclientcookies="Yes">
>
> 
> end application.cfm
>
> The only thing I am using with the application.cfm file is
> #session.sessionid#, and I need to carry that sessionid
> through pages. But,
> I also want to make it so that when a person leaves my site,
> and then goes
> back they don't get the same sessionid, but a brand new one.
> I could set an
> expire date, but I'd rather have it not use the same one over again
> automatically. Any suggestions?
>
> Oh and while were on the subject, I want to set global variables while
> person-x is in the site. Example:
>
> Making a shopping cart that records when a person checks on a
> radio button
> labled purchase. That way when they are 4-99 pages deep they
> can hit buy and
> bring up a list of all of the things they said yes to. So you
> click on yes,
> and it globals the name of the product and the product_id, so I can
> reference it later.
>
> Thanks,
> Gavin
> --
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list
s/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseof

RE: Link Won't resolve

2000-08-09 Thread Chapman, Katrina

Are they getting a 404 message?  Or something else?

--K

-Original Message-
From: Sim Graves [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 11:42 AM
To: [EMAIL PROTECTED]
Subject: Link Won't resolve



I'm sending a link to a CFM page with a parameter in the URL like the
example below:

http://bmg.com/application/employments.cfm?EmployLinkNumber=971819831  

Sorry, I could not give a real link due to keeping up security for my
client. The link won't resolve for my clients on IE 4.0.  I can't
reproduce their error.  It sounds like IE is ignoring everything before
my "=".  If you have any clues, I would greatly appreciate the help. 
These links are being sent all over the US to different offices.  I need
to fix this before they come to get me.

TIA

Sim Graves

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-09 Thread Gieseman, Athelene

It works!!!  Thank you so much to everyone who helped along the way.  My
goal is to one day be 1/10th as helpful to the list as the list has been to
me.  At this point (given how much I get and how little I now know), that's
a huge goal.  Thanks again.

Athelene

-Original Message-
From: David E. Crawford [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 12:25 PM
To: [EMAIL PROTECTED]
Subject: Re: Multiple value Select


I am using Outlook Express, and have it set up to reply to messages in their
original format, which in this case is HTML, or to compose new messages in
plain text.  For some reason the list is not properly handling the mime
conversion.  To see if perhaps this is fixed, I have changed it to send in
plain text only, regardless of the format of the incoming message. It has
been annoying to me, because other messages besides mine have been turned to
mush.

DC


- Original Message -
From: "Chapman, Katrina" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 17:03
Subject: RE: Multiple value Select


> The 3D shouldn't be there.  It's because a very bad David;) is sending
> messages in HTML format, or some format other than plain text.  Just
> remove
> any 3D's you may have copied and it should work.
>
> --K
>
> -Original Message-
> From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 8:50 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Multiple value Select
>
>
> OK.  I copied the code into the document.  Now it's not liking the first
> quote in the CFSELECT statement:
>
>  
>
> Did I just misunderstand what the 3D represented?  Is there just a
> syntax
> error I'm not seeing.  Tried to find some reference to it in the books I
> have (I assumed it stood for dimension?) with no luck.
>
> TIA,
>
> Athelene
>
> -Original Message-
> From: David E. Crawford [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 7:42 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Multiple value Select
>
>
> This is a multi-part message in MIME format.
>
> --=_NextPart_000_00EF_01C001FF.3F8198C0
> Content-Type: text/plain;
> charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
>
> RE: Multiple value SelectOk, now we have a bit of information.
>
> Try this:
>
> =20
> =20
>
>ListFindNoCase(EditNameQry.PracticeGroup,GetPG.PG)>=20
> =20
> =20
> =20
> =20
>#PG#  =20
> =20
> =20
>
>
>
> Change the order of the parameters to the =
> Listfindnocase()/Listcontains() functions.  If EditNameQry.PracticeGroup
> =
> is a comma seperated list and GETPG.PG is a single value, this should =
> work.
>
>
>
> DC
>
>
>
>   - Original Message -=20
>   From: Gieseman, Athelene=20
>   To: '[EMAIL PROTECTED]'=20
>   Sent: Tuesday, August 08, 2000 21:36
>   Subject: RE: Multiple value Select
>
>
>   No.  That field would have multiple items in a comma-delimited format.
> =
>  Not=20
>   even the first option is selected.=20
>
>   Athelene=20
>
>   -Original Message-=20
>   From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 4:33 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   This may be a stupid question but the query EditNameQry is only =
> pulling one=20
>   value for PracticeGroup.  Right?  If not I'm sure that when you
> "view=20
>   source" you'll see that more than one option is "SELECTED".  That will
> =
>
>   confuse the browser and it will stay on the first option.=20
>
>   --K=20
>
>   -Original Message-=20
>   From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 2:04 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   Yo may have a point.. try putting quotes around =
> EditNameQry.PracticeGroup.=20
>
>   Plus, if I replace=20
>
>   =20
>   with=20
>
>   =20
>
>   the Agribusiness option is selected.  So I think I'm doing something =
> wrong=20
>   in how I'm using the second parameter of the ListContains.=20
>
>   -Original Message-=20
>   From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 4:18 PM=20
>   To: '[EMAIL PROTECTED]'=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   No luck.  I think there's a problem in that the listcontains isn't =
> finding=20
>   any matches.  I can't figure out why.  I display the previously =
> selected=20
>   items in another part of the form and it is identical to the options =
> in the=20
>   database.  There is a comma separating the selected items.  For =
> example, the=20
>   record viewed via SQL shows:  "Agribusiness,Commercial Litigation" =
> (less the=20
>   quotes) in the field.  Both of those practice groups are identically =
> listed=20
>   in the GetPG.PG list.  Yet neither of them are showing up selected in

RE: VERY SAD (was )

2000-08-09 Thread Benjamin S. Rogers

Duane,

We've used  and  in several relatively simple applications
and haven't run into any problems. When you say "unstable," what do you
mean? Is there something we should be watching for? What I think of when I
hear "unstable" is, I imagine, probably not what you meant.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057

-Original Message-
From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 2:37 PM
To: [EMAIL PROTECTED]
Subject: RE: VERY SAD (was )


> Very sad to understand that list is swiftly rush down.
> Only one year ago you was able to find answer for any of your
> questions here.
> But things are changed.
> Very sad to understand that Allaire Corporation's product evangelist
> uses this list only for advertises and unable to explain how his
> child works.
>
>
> Wednesday, August 09, 2000, 3:22:11 PM, you wrote:
>
> Alex> cf-talk,
>
> Alex>   Can somebody help me? I have difficulties trying to
> validate user's
> Alex>   input in cfgrid. In fact I can't understand how I can validate 15
> Alex>   columns with 15 validation rules.
>
> Alex>   Can somebody help me?

You are probably not getting answers for this because VERY few people use
Allaire's applets. They are highly unstable and because of that most users
shy away from usage.

Duane Boudreau,
eMPower Project Manager
Director, Web Technologies
Ektron, Inc.
http://www.ektron.com
5 Northern Blvd, Suite 6
Amherst, NH 03031
Tel: 603-594-0249 x114
Fax: 603-594-0258


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Link Won't resolve

2000-08-09 Thread Dana Larose

Since I just finished fixing a similar problem, I'll take a stab in the
dark.  Are you sending url through an email?  Sometimes, an email client
will screw up word wrapping and effectively give you something like:

http://bmg.com/application/employments.cfm?EmployLinkNumber=
971819831

Are you sure that EmployLinkNumber is always generated?  I.e., if it is
selected out of a database, what are you doing if the query results 0
results?  If the user is entering a form field, are you ensuring they enter
a correct value?

(I know they are simple things, but I occasionally simple things like that)

Dana


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: VERY SAD (was )

2000-08-09 Thread Angél Stewart

Ever thought that perhaps...nobody really knows the answer?
=)

I've gotten loads of help from this list! Best thing I ever did during my
path to CF Development was to subscribe ;-P

There are also the support forums on Allaire.com that you can ask this
question as well.

-Gel

- Original Message -
From: Alex Puritche <[EMAIL PROTECTED]>


> Very sad to understand that list is swiftly rush down.
> Only one year ago you was able to find answer for any of your
> questions here.
> But things are changed.
> Very sad to understand that Allaire Corporation's product evangelist
> uses this list only for advertises and unable to explain how his child
works.
>
>


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: VERY SAD (was )

2000-08-09 Thread Gregory Harris

Hmmm...maybe nobody knows the answer to that one?  Personally I don't even have a 
clue.  Personally it seems that about 80% of my questions get a good response (which 
is fairly good for any mailing list!).  So don't sweat it man, we're alive, just 
possibly no more knowledgable than you!

Gregory Harris
Los Angeles ITA Dept.
[EMAIL PROTECTED]


>>> [EMAIL PROTECTED] 08/09 11:02 AM >>>
Very sad to understand that list is swiftly rush down.
Only one year ago you was able to find answer for any of your
questions here.
But things are changed.
Very sad to understand that Allaire Corporation's product evangelist
uses this list only for advertises and unable to explain how his child works.


Wednesday, August 09, 2000, 3:22:11 PM, you wrote:

Alex> cf-talk,

Alex>   Can somebody help me? I have difficulties trying to validate user's
Alex>   input in cfgrid. In fact I can't understand how I can validate 15
Alex>   columns with 15 validation rules.

Alex>   Can somebody help me?



-- 
 Regards,
 Alexmailto:[EMAIL PROTECTED] 


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ 
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Link Won't resolve

2000-08-09 Thread Sim Graves


I'm sending a link to a CFM page with a parameter in the URL like the
example below:

http://bmg.com/application/employments.cfm?EmployLinkNumber=971819831  

Sorry, I could not give a real link due to keeping up security for my
client. The link won't resolve for my clients on IE 4.0.  I can't
reproduce their error.  It sounds like IE is ignoring everything before
my "=".  If you have any clues, I would greatly appreciate the help. 
These links are being sent all over the US to different offices.  I need
to fix this before they come to get me.

TIA

Sim Graves
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: VERY SAD (was )

2000-08-09 Thread Duane Boudreau

> Very sad to understand that list is swiftly rush down.
> Only one year ago you was able to find answer for any of your
> questions here.
> But things are changed.
> Very sad to understand that Allaire Corporation's product evangelist
> uses this list only for advertises and unable to explain how his
> child works.
>
>
> Wednesday, August 09, 2000, 3:22:11 PM, you wrote:
>
> Alex> cf-talk,
>
> Alex>   Can somebody help me? I have difficulties trying to
> validate user's
> Alex>   input in cfgrid. In fact I can't understand how I can validate 15
> Alex>   columns with 15 validation rules.
>
> Alex>   Can somebody help me?

You are probably not getting answers for this because VERY few people use
Allaire's applets. They are highly unstable and because of that most users
shy away from usage.

Duane Boudreau,
eMPower Project Manager
Director, Web Technologies
Ektron, Inc.
http://www.ektron.com
5 Northern Blvd, Suite 6
Amherst, NH 03031
Tel: 603-594-0249 x114
Fax: 603-594-0258

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: cfx_cybercash question

2000-08-09 Thread Bud

On 8/9/00, Zachary Bedell penned:
>To the best of my knowledge, the CFX doesn't actually need the mck
>installed on the server.  There's been some debate about that,
>but  I know it doesn't use the MCK DLL's so I doubt it is or
>isn't compatable with a particular version of CyberCash.  It does use
>the 3.0 message formats, but there's not much expandability.  So
>you'd be out of luck if you wanted to use CyberCash's new fraud
>control services.

Hmmm. The description says it's simply a wrapper for that very thing. 
Looks like the tag hasn't been updated for quite some time. That's 
why I was wondering if any had it installed with the latest mck.

Thanks,
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



problem with query.

2000-08-09 Thread miles


select *
from nxsteche
where tech_code = '#tech#'



SELECT DISTINCT nxstar_e.tar_num, nxstar_e.bus_name, nxstar_e.cust_code,
nxstar_e.tar_status, Max(nxsprodr.prod_desc) AS prod_desc, 
nxstar_e.assigned_to,
nxstar_e.synopsis, nxstar_e.phone, nxstar_e.entered_date, 
nxstar_e.symptom_code,
Count(nxsnotes.id) AS activities, nxstar_e.contact
FROM nxsnotes
  INNER JOIN (
 (nxstar_e INNER JOIN nxsregir ON nxstar_e.cust_code = 
nxsregir.cust_code)
 INNER JOIN nxsprodr ON nxsregir.prod_id = nxsprodr.prod_code)
 ON nxsnotes.note_id = nxstar_e.tar_num
GROUP BY nxstar_e.tar_num, nxstar_e.bus_name, nxstar_e.tar_status,
   nxstar_e.cust_code, nxstar_e.assigned_to, 
nxstar_e.synopsis,
   nxstar_e.phone, nxstar_e.contact, nxstar_e.symptom_code,
   nxstar_e.entered_date
  HAVING ((nxstar_e.tar_status <>'CLOSED') AND 
(nxstar_e.assigned_to = '#tech#')
ORDER BY nxstar_e.tar_num


Above are two queries that drive a response page...where on this page
the queries (as you can see) are being driven by the passed parameter
#tech# from the previous page.

In the top query...the query works...

In the bottom query I get an error from coldfusion telling me that
dynamic text can not be represented as strings...

Ok if that's true...then why did the first query work that's right above it
on the same page ?

Any hope here...?

Miles.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-09 Thread Chapman, Katrina

I understand I was just teasing.  But you got it to work this time.  Perhaps
because my message was in plain text.  The list is set to filter out
attachments, which is how HTML mail is sent, and therefore puts them in the
body as text.  Makes for some pretty ugly messages but hey it saves us from
infection.

--K

-Original Message-
From: David E. Crawford [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 10:25 AM
To: [EMAIL PROTECTED]
Subject: Re: Multiple value Select


I am using Outlook Express, and have it set up to reply to messages in their
original format, which in this case is HTML, or to compose new messages in
plain text.  For some reason the list is not properly handling the mime
conversion.  To see if perhaps this is fixed, I have changed it to send in
plain text only, regardless of the format of the incoming message. It has
been annoying to me, because other messages besides mine have been turned to
mush.

DC


- Original Message -
From: "Chapman, Katrina" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 17:03
Subject: RE: Multiple value Select


> The 3D shouldn't be there.  It's because a very bad David;) is sending
> messages in HTML format, or some format other than plain text.  Just
> remove
> any 3D's you may have copied and it should work.
>
> --K
>
> -Original Message-
> From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 8:50 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Multiple value Select
>
>
> OK.  I copied the code into the document.  Now it's not liking the first
> quote in the CFSELECT statement:
>
>  
>
> Did I just misunderstand what the 3D represented?  Is there just a
> syntax
> error I'm not seeing.  Tried to find some reference to it in the books I
> have (I assumed it stood for dimension?) with no luck.
>
> TIA,
>
> Athelene
>
> -Original Message-
> From: David E. Crawford [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 7:42 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Multiple value Select
>
>
> This is a multi-part message in MIME format.
>
> --=_NextPart_000_00EF_01C001FF.3F8198C0
> Content-Type: text/plain;
> charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
>
> RE: Multiple value SelectOk, now we have a bit of information.
>
> Try this:
>
> =20
> =20
>
>ListFindNoCase(EditNameQry.PracticeGroup,GetPG.PG)>=20
> =20
> =20
> =20
> =20
>#PG#  =20
> =20
> =20
>
>
>
> Change the order of the parameters to the =
> Listfindnocase()/Listcontains() functions.  If EditNameQry.PracticeGroup
> =
> is a comma seperated list and GETPG.PG is a single value, this should =
> work.
>
>
>
> DC
>
>
>
>   - Original Message -=20
>   From: Gieseman, Athelene=20
>   To: '[EMAIL PROTECTED]'=20
>   Sent: Tuesday, August 08, 2000 21:36
>   Subject: RE: Multiple value Select
>
>
>   No.  That field would have multiple items in a comma-delimited format.
> =
>  Not=20
>   even the first option is selected.=20
>
>   Athelene=20
>
>   -Original Message-=20
>   From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 4:33 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   This may be a stupid question but the query EditNameQry is only =
> pulling one=20
>   value for PracticeGroup.  Right?  If not I'm sure that when you
> "view=20
>   source" you'll see that more than one option is "SELECTED".  That will
> =
>
>   confuse the browser and it will stay on the first option.=20
>
>   --K=20
>
>   -Original Message-=20
>   From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 2:04 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   Yo may have a point.. try putting quotes around =
> EditNameQry.PracticeGroup.=20
>
>   Plus, if I replace=20
>
>   =20
>   with=20
>
>   =20
>
>   the Agribusiness option is selected.  So I think I'm doing something =
> wrong=20
>   in how I'm using the second parameter of the ListContains.=20
>
>   -Original Message-=20
>   From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 4:18 PM=20
>   To: '[EMAIL PROTECTED]'=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   No luck.  I think there's a problem in that the listcontains isn't =
> finding=20
>   any matches.  I can't figure out why.  I display the previously =
> selected=20
>   items in another part of the form and it is identical to the options =
> in the=20
>   database.  There is a comma separating the selected items.  For =
> example, the=20
>   record viewed via SQL shows:  "Agribusiness,Commercial Litigation" =
> (less the=20
>   quotes) in the field.  Both of those practice groups are identically =
> listed=20
>   in the GetPG.PG lis

Query problem

2000-08-09 Thread morris johnston

Hi,
Can anyone tell me how I may use the value of a field obtained from a query
in a template as a valid variable, as I keep getting "unknown parameter"
error.
The following is the code I'm using at the moment.
I tried to put  in Application.cfm,
the result was that the resulting VID value would be = [blank +
#evaluate(expression)#]
e.g. [blank 2]

here is the code I'm using.


SELECT land_id
FROM VacancyDetails


ListValueCount for ID Generation



Please enter your user ID:














SELECTSubVid
FROM VacancyDetails
where   land_id='#form.land_id#'




SubVid  Value= #SV# 





The new Vacancy ID is the combination of subvid value
and the number generated in 'evaluate(expression)' function
hence = : #vid#






---
FREE! The World's Best Email Address @email.com
Reserve your name now at http://www.email.com


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: file name

2000-08-09 Thread David Green

Hi all

Am new to CF.  I was just wondering what kind of things you would use this
onrequestend.cfm for vs the application.cfm.

Thanks for info
David Green

- Original Message -
From: "David E. Crawford" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 10:26 AM
Subject: Re: file name


> To reiterate, thanks to the MIME mush:
>
>
> onrequestend.cfm, which must be located in the same directory as the
> currently executing application.cfm
>
> DC
> - Original Message -
> From: "David E. Crawford" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, August 09, 2000 17:07
> Subject: Re: file name
>
>
> > This is a multi-part message in MIME format.
> >
> > --=_NextPart_000_0367_01C00224.5A571AB0
> > Content-Type: text/plain;
> > charset="Windows-1252"
> > Content-Transfer-Encoding: quoted-printable
> >
> > file nameonrequestend.cfm, must be located in the same directory as the
> > =
> > currently executing application.cfm
> >
> > DC
> >   - Original Message -=20
> >   From: Jay Wigginton=20
> >   To: [EMAIL PROTECTED]=20
> >   Sent: Wednesday, August 09, 2000 16:51
> >   Subject: file name
> >
> >
> >   Could some please tell me the file name that if present in a directory
> > =
> > will=20
> >   be executed after the current template... same as cfapplication but is
> > =
> >
> >   executed afterwards... I have searched the archives and thought I had
> > =
> > saved=20
> >   the file name in my CF tips, but I cannot find it .. =20
> >
> >   thanks in advance!=20
> >   Jay=20
> >
> >   =
> > 
> > -=
> > -=20
> >   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
> >   To Unsubscribe visit =
> > http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> > a=
> > lk or send a message to [EMAIL PROTECTED] with =
> > 'unsubscribe' in the body.
> >
> >
> > --=_NextPart_000_0367_01C00224.5A571AB0
> > Content-Type: text/html;
> > charset="Windows-1252"
> > Content-Transfer-Encoding: quoted-printable
> >
> > 
> > file name
> >  > http-equiv=3DContent-Type>
> > 
> > 
> > 
> > 
> > onrequestend.cfm, must be located in =
> > the same=20
> > directory as the currently executing application.cfm
> >  
> > DC
> >  > style=3D"BORDER-LEFT: #00 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT:
> > =
> > 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px">
> >   - Original Message - 
> >>   style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
> > black">From:=20
> >   mailto:[EMAIL PROTECTED]" [EMAIL PROTECTED]>Jay =
> > Wigginton=20
> >   
> >   To:  >   href=3D"mailto:[EMAIL PROTECTED]"=20
> >   [EMAIL PROTECTED]>[EMAIL PROTECTED] 
> >   Sent: Wednesday, August 09, =
> > 2000=20
> >   16:51
> >   Subject: file name
> >   
> >   Could some please tell me the file name that if =
> > present in a=20
> >   directory will be executed after the current
> > =
> >
> >   template... same as cfapplication but is  > size=3D2>executed=20
> >   afterwards... I have searched the archives and thought I had =
> > saved=20
> >   the file name in my CF tips, but I cannot find it =
> > ..=20
> >    
> >   thanks in advance!  > size=3D2>Jay 
> >>   =
> > size=3D2>---
> > -=
> > --=20
> >   Archives:  >   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
> >   =
> > target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/ > A=
> > >=20
> >   To Unsubscribe visit  >   =
> > href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=
> > 3D=
> > lists/cf_talk"=20
> >   =
> > target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> > m=
> > p;body=3Dlists/cf_talk=20
> >   or send a message to [EMAIL PROTECTED] with =
> > 'unsubscribe' in=20
> >   the body.
> >
> > --=_NextPart_000_0367_01C00224.5A571AB0--
> >
> > 
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > or send a message to [EMAIL PROTECTED] with
> > 'unsubscribe' in the body.
> >
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Application.cfm in a CFMODULE

2000-08-09 Thread CHowarth

Code in a custom tag (whether the tag is called directly with a CF_ syntax
or called using CFMODULE) can refer to any session and application variables
that are available to the calling module.  No special scoping or coding is
required to access these variables in the tag.  If they are established in
the module that is calling the tag, they are available to the tag.  

The only special consideration required is when you want to refer to local
variables from the calling module.  To reference these, you must use the
caller scope.  

-Original Message-
From: Peter Theobald [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 1:11 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Application.cfm in a CFMODULE



Since CFMODULE doesn't load Application.cfm, I can't use any
of my Application.cfm settings in a module. For example, inside a module
I cant use Session variables without this:

CFLock cannot be used to lock the application or session shared scopes
without these scopes being established through the use of the
CFApplication tag. You must use CFApplication and specify an application
name to use the application scope. If you want to use the session scope
you need to enable session management as well. Application and/or Session
variables must also be enabled in the ColdFusion Administrator.

Should I  to get
all the settings? If this is something I will need in all my MODULEs, why
doesn't CF just load it for MODULES?




--
-
Peter Theobald, Chief Technology Officer
LiquidStreaming
http://www.liquidstreaming.com/"
eudora="autourl">http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 Fax 1.212.679.8032



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.




This transmittal may be a confidential attorney-client communication or may otherwise 
be privileged or confidential.  If you are not the intended recipient, you are hereby 
notified that you have received this transmittal in error; any review, dissemination, 
distribution or copying of this transmittal is strictly prohibited.  If you have 
received this communication in error, please notify us immediately by reply 
([EMAIL PROTECTED]) or by telephone (call us collect at 212-403-4357) and 
immediately delete this message and all its attachments.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



VERY SAD (was )

2000-08-09 Thread Alex Puritche

Very sad to understand that list is swiftly rush down.
Only one year ago you was able to find answer for any of your
questions here.
But things are changed.
Very sad to understand that Allaire Corporation's product evangelist
uses this list only for advertises and unable to explain how his child works.


Wednesday, August 09, 2000, 3:22:11 PM, you wrote:

Alex> cf-talk,

Alex>   Can somebody help me? I have difficulties trying to validate user's
Alex>   input in cfgrid. In fact I can't understand how I can validate 15
Alex>   columns with 15 validation rules.

Alex>   Can somebody help me?



-- 
 Regards,
 Alexmailto:[EMAIL PROTECTED]


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: file name

2000-08-09 Thread Brad Roberts

Exactly right, sorry.

Brad

-Original Message-
From: David E. Crawford [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 1:33 PM
To: [EMAIL PROTECTED]
Subject: Re: file name


>From the CFDOCS:

The OnRequestEnd.cfm file

  Just as the Application.cfm file is executed before each application page
it governs, you can specify a file named OnRequestEnd.cfm, which is executed
after each application page in the same application.

ColdFusion Server looks for the OnRequestEnd.cfm file in the same directory
as the Application.cfm file of the current application page. The
OnRequestEnd.cfm file will never be executed if it resides in another
directory.

The OnRequestEnd.cfm file will not be executed if there is an error or an
exception in the called page, or if the called page executes the CFABORT or
CFEXIT tag.

DC

- Original Message -
From: "Brad Roberts" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 17:13
Subject: RE: file name


>
> OnRequestEnd.cfm
>
> Note: this file has to be in the same directory as the calling template.
> CF
> will not search for this file like application.cfm
>
> Brad
>
> -Original Message-
> From: Jay Wigginton [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 12:51 PM
> To: [EMAIL PROTECTED]
> Subject: file name
>
>
> Could some please tell me the file name that if present in a directory
> will
> be executed after the current template... same as cfapplication but is
> executed afterwards... I have searched the archives and thought I had
> saved
> the file name in my CF tips, but I cannot find it .. 
>
> thanks in advance!
> Jay
>
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or
> send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> the body.
>
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.
>


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: file name

2000-08-09 Thread Sean Daniels

> Could some please tell me the file name that if present in a 
> directory will
> be executed after the current template... same as cfapplication but is
> executed afterwards... I have searched the archives and thought I 
> had saved
> the file name in my CF tips, but I cannot find it .. 

onrequestend.cfm


- Sean


Sean Daniels
Manager, Engineering
Marketplace Technologies
[EMAIL PROTECTED]

tel: 207.439.6030
cel: 978.764.0779 

http://www.dealforce.com
http://www.dealstream.com
http://www.mergernetwork.com



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: file name

2000-08-09 Thread Peter Theobald

OnRequestEnd.cfm


At 12:51 PM 8/9/00 -0400, Jay Wigginton wrote:
>Could some please tell me the file name that if present in a directory will
>be executed after the current template... same as cfapplication but is
>executed afterwards... I have searched the archives and thought I had saved
>the file name in my CF tips, but I cannot find it .. 
>
>thanks in advance!
>Jay
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body. 


---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 Fax 1.212.679.8032

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: good simple web board been done?

2000-08-09 Thread Mark Rogers

Sean,

I would greatly appreciate a copy of this code if the offer still stands.

Thanks,

Mark

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 10, 2000 4:09 PM
To: [EMAIL PROTECTED]
Subject: Re: good simple web board been done?


I can give you code for a simple one if you want. It's written in fusebox.
It was one of the first things I built so its not all that cool. but it
sounds like what you are looking for.  If nothing else it will give you an
idea where to start and it would be free.

I think my brother put it on the site he is starting to build for fun. you
can check it out at
www.benet.ws

- Original Message -
From: "Jeff Fongemie" <[EMAIL PROTECTED]>
To: "Cf-Talk" <[EMAIL PROTECTED]>
Sent: Monday, July 10, 2000 12:52 PM
Subject: good simple web board been done?


> Hey everyone,
>
> I'm looking for a good, simple web bulletin board where users can post
> messages and replies that does not require users to create an account, and
> is not a "drill-down" type application. Client wants a greats topics and
> replies to be a great big list like the old cgi types (Mats Scripts).
>
> Thanks,
>
> Jeff
>
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: file name

2000-08-09 Thread David E. Crawford

>From the CFDOCS:

The OnRequestEnd.cfm file

  Just as the Application.cfm file is executed before each application page
it governs, you can specify a file named OnRequestEnd.cfm, which is executed
after each application page in the same application.

ColdFusion Server looks for the OnRequestEnd.cfm file in the same directory
as the Application.cfm file of the current application page. The
OnRequestEnd.cfm file will never be executed if it resides in another
directory.

The OnRequestEnd.cfm file will not be executed if there is an error or an
exception in the called page, or if the called page executes the CFABORT or
CFEXIT tag.

DC

- Original Message -
From: "Brad Roberts" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 17:13
Subject: RE: file name


>
> OnRequestEnd.cfm
>
> Note: this file has to be in the same directory as the calling template.
> CF
> will not search for this file like application.cfm
>
> Brad
>
> -Original Message-
> From: Jay Wigginton [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 12:51 PM
> To: [EMAIL PROTECTED]
> Subject: file name
>
>
> Could some please tell me the file name that if present in a directory
> will
> be executed after the current template... same as cfapplication but is
> executed afterwards... I have searched the archives and thought I had
> saved
> the file name in my CF tips, but I cannot find it .. 
>
> thanks in advance!
> Jay
>
> 
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or
> send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> the body.
>
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: file name

2000-08-09 Thread David E. Crawford

To reiterate, thanks to the MIME mush:


onrequestend.cfm, which must be located in the same directory as the
currently executing application.cfm

DC
- Original Message -
From: "David E. Crawford" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 17:07
Subject: Re: file name


> This is a multi-part message in MIME format.
>
> --=_NextPart_000_0367_01C00224.5A571AB0
> Content-Type: text/plain;
> charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
>
> file nameonrequestend.cfm, must be located in the same directory as the
> =
> currently executing application.cfm
>
> DC
>   - Original Message -=20
>   From: Jay Wigginton=20
>   To: [EMAIL PROTECTED]=20
>   Sent: Wednesday, August 09, 2000 16:51
>   Subject: file name
>
>
>   Could some please tell me the file name that if present in a directory
> =
> will=20
>   be executed after the current template... same as cfapplication but is
> =
>
>   executed afterwards... I have searched the archives and thought I had
> =
> saved=20
>   the file name in my CF tips, but I cannot find it .. =20
>
>   thanks in advance!=20
>   Jay=20
>
>   =
> 
> -=
> -=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or send a message to [EMAIL PROTECTED] with =
> 'unsubscribe' in the body.
>
>
> --=_NextPart_000_0367_01C00224.5A571AB0
> Content-Type: text/html;
> charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
>
> 
> file name
>  http-equiv=3DContent-Type>
> 
> 
> 
> 
> onrequestend.cfm, must be located in =
> the same=20
> directory as the currently executing application.cfm
>  
> DC
>  style=3D"BORDER-LEFT: #00 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT:
> =
> 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px">
>   - Original Message - 
>  style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
> black">From:=20
>   mailto:[EMAIL PROTECTED]" [EMAIL PROTECTED]>Jay =
> Wigginton=20
>   
>   To:href=3D"mailto:[EMAIL PROTECTED]"=20
>   [EMAIL PROTECTED]>[EMAIL PROTECTED] 
>   Sent: Wednesday, August 09, =
> 2000=20
>   16:51
>   Subject: file name
>   
>   Could some please tell me the file name that if =
> present in a=20
>   directory will be executed after the current
> =
>
>   template... same as cfapplication but is  size=3D2>executed=20
>   afterwards... I have searched the archives and thought I had =
> saved=20
>   the file name in my CF tips, but I cannot find it =
> ..=20
>    
>   thanks in advance!  size=3D2>Jay 
>  =
> size=3D2>---
> -=
> --=20
>   Archives:href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/ A=
> >=20
>   To Unsubscribe visit=
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk=20
>   or send a message to [EMAIL PROTECTED] with =
> 'unsubscribe' in=20
>   the body.
>
> --=_NextPart_000_0367_01C00224.5A571AB0--
>
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Multiple value Select

2000-08-09 Thread David E. Crawford

I am using Outlook Express, and have it set up to reply to messages in their
original format, which in this case is HTML, or to compose new messages in
plain text.  For some reason the list is not properly handling the mime
conversion.  To see if perhaps this is fixed, I have changed it to send in
plain text only, regardless of the format of the incoming message. It has
been annoying to me, because other messages besides mine have been turned to
mush.

DC


- Original Message -
From: "Chapman, Katrina" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 17:03
Subject: RE: Multiple value Select


> The 3D shouldn't be there.  It's because a very bad David;) is sending
> messages in HTML format, or some format other than plain text.  Just
> remove
> any 3D's you may have copied and it should work.
>
> --K
>
> -Original Message-
> From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 8:50 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Multiple value Select
>
>
> OK.  I copied the code into the document.  Now it's not liking the first
> quote in the CFSELECT statement:
>
>  
>
> Did I just misunderstand what the 3D represented?  Is there just a
> syntax
> error I'm not seeing.  Tried to find some reference to it in the books I
> have (I assumed it stood for dimension?) with no luck.
>
> TIA,
>
> Athelene
>
> -Original Message-
> From: David E. Crawford [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 7:42 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Multiple value Select
>
>
> This is a multi-part message in MIME format.
>
> --=_NextPart_000_00EF_01C001FF.3F8198C0
> Content-Type: text/plain;
> charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
>
> RE: Multiple value SelectOk, now we have a bit of information.
>
> Try this:
>
> =20
> =20
>
>ListFindNoCase(EditNameQry.PracticeGroup,GetPG.PG)>=20
> =20
> =20
> =20
> =20
>#PG#  =20
> =20
> =20
>
>
>
> Change the order of the parameters to the =
> Listfindnocase()/Listcontains() functions.  If EditNameQry.PracticeGroup
> =
> is a comma seperated list and GETPG.PG is a single value, this should =
> work.
>
>
>
> DC
>
>
>
>   - Original Message -=20
>   From: Gieseman, Athelene=20
>   To: '[EMAIL PROTECTED]'=20
>   Sent: Tuesday, August 08, 2000 21:36
>   Subject: RE: Multiple value Select
>
>
>   No.  That field would have multiple items in a comma-delimited format.
> =
>  Not=20
>   even the first option is selected.=20
>
>   Athelene=20
>
>   -Original Message-=20
>   From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 4:33 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   This may be a stupid question but the query EditNameQry is only =
> pulling one=20
>   value for PracticeGroup.  Right?  If not I'm sure that when you
> "view=20
>   source" you'll see that more than one option is "SELECTED".  That will
> =
>
>   confuse the browser and it will stay on the first option.=20
>
>   --K=20
>
>   -Original Message-=20
>   From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 2:04 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   Yo may have a point.. try putting quotes around =
> EditNameQry.PracticeGroup.=20
>
>   Plus, if I replace=20
>
>   =20
>   with=20
>
>   =20
>
>   the Agribusiness option is selected.  So I think I'm doing something =
> wrong=20
>   in how I'm using the second parameter of the ListContains.=20
>
>   -Original Message-=20
>   From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 4:18 PM=20
>   To: '[EMAIL PROTECTED]'=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   No luck.  I think there's a problem in that the listcontains isn't =
> finding=20
>   any matches.  I can't figure out why.  I display the previously =
> selected=20
>   items in another part of the form and it is identical to the options =
> in the=20
>   database.  There is a comma separating the selected items.  For =
> example, the=20
>   record viewed via SQL shows:  "Agribusiness,Commercial Litigation" =
> (less the=20
>   quotes) in the field.  Both of those practice groups are identically =
> listed=20
>   in the GetPG.PG list.  Yet neither of them are showing up selected in
> =
> the=20
>   control.  Plus, if I replace=20
>
>   =20
>   with=20
>
>   =20
>
>   the Agribusiness option is selected.  So I think I'm doing something =
> wrong=20
>   in how I'm using the second parameter of the ListContains.=20
>
>
>
>   Athelene=20
>
>
>
>
>   -Original Message-=20
>   From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 3:00 PM=20
>   To: [EMAIL PRO

Possibly OT: clustered server name question

2000-08-09 Thread Tom Clark

I am working on setting up multiple NT servers for my company's website.
Taking Allaire's advice I'm using DNS round robin and ClusterCats to load
balance.  Keep in mind I've never done this before and it's all learning for
me.

Here's my question:  What determines the name the browser shows in the
address field?  When I enter "somename.mydomain.com" it'll return
"testbox1.mydomain.com" in the address field, where "testbox1" is the name
of the first server in the cluster.  Maybe a better question is how can I
get it to always show "somename.mydomain.com"?

I'm not sure where this problem lies, whether it's on the DNS side,
webserver side, or somewhere in ClusterCats.  Even though I'll only be using
two servers at first, I want the outside world to only see 1 address.
Besides, if a server went down during some transaction, having the specific
server name would prevent ClusterCats from automagically moving to another
server, right?  At least when I tried it, that's what happened.

Direct email would be appreciated, since I get the list in digest form, but
feel free to post it to the list too.

Thanks.

===
Tom Clark
Telect, Inc.
Spokane, Washington

All generalizations are false.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Application.cfm in a CFMODULE

2000-08-09 Thread Peter Theobald


Since CFMODULE doesn't load Application.cfm, I can't use any
of my Application.cfm settings in a module. For example, inside a module
I cant use Session variables without this:

CFLock cannot be used to lock the application or session shared scopes
without these scopes being established through the use of the
CFApplication tag. You must use CFApplication and specify an application
name to use the application scope. If you want to use the session scope
you need to enable session management as well. Application and/or Session
variables must also be enabled in the ColdFusion Administrator.

Should I  to get
all the settings? If this is something I will need in all my MODULEs, why
doesn't CF just load it for MODULES?




---
Peter Theobald, Chief Technology Officer
LiquidStreaming
http://www.liquidstreaming.com/" 
eudora="autourl">http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 Fax 1.212.679.8032


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: file name

2000-08-09 Thread Brad Roberts


OnRequestEnd.cfm

Note: this file has to be in the same directory as the calling template.  CF
will not search for this file like application.cfm

Brad

-Original Message-
From: Jay Wigginton [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 12:51 PM
To: [EMAIL PROTECTED]
Subject: file name


Could some please tell me the file name that if present in a directory will
be executed after the current template... same as cfapplication but is
executed afterwards... I have searched the archives and thought I had saved
the file name in my CF tips, but I cannot find it .. 

thanks in advance!
Jay


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: file name

2000-08-09 Thread David E. Crawford

This is a multi-part message in MIME format.

--=_NextPart_000_0367_01C00224.5A571AB0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

file nameonrequestend.cfm, must be located in the same directory as the =
currently executing application.cfm

DC
  - Original Message -=20
  From: Jay Wigginton=20
  To: [EMAIL PROTECTED]=20
  Sent: Wednesday, August 09, 2000 16:51
  Subject: file name


  Could some please tell me the file name that if present in a directory =
will=20
  be executed after the current template... same as cfapplication but is =

  executed afterwards... I have searched the archives and thought I had =
saved=20
  the file name in my CF tips, but I cannot find it .. =20

  thanks in advance!=20
  Jay=20

  =
-=
-=20
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
  To Unsubscribe visit =
http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_ta=
lk or send a message to [EMAIL PROTECTED] with =
'unsubscribe' in the body.


--=_NextPart_000_0367_01C00224.5A571AB0
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable


file name





onrequestend.cfm, must be located in =
the same=20
directory as the currently executing application.cfm
 
DC

  - Original Message - 
  From:=20
  mailto:[EMAIL PROTECTED]" [EMAIL PROTECTED]>Jay =
Wigginton=20
  
  To: mailto:[EMAIL PROTECTED]"=20
  [EMAIL PROTECTED]>[EMAIL PROTECTED] 
  Sent: Wednesday, August 09, =
2000=20
  16:51
  Subject: file name
  
  Could some please tell me the file name that if =
present in a=20
  directory will be executed after the current =

  template... same as cfapplication but is executed=20
  afterwards... I have searched the archives and thought I had =
saved=20
  the file name in my CF tips, but I cannot find it =
..=20
   
  thanks in advance! Jay 
  =
--=20
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
  =
target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
  To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3D=
lists/cf_talk"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&am=
p;body=3Dlists/cf_talk=20
  or send a message to [EMAIL PROTECTED] with =
'unsubscribe' in=20
  the body.

--=_NextPart_000_0367_01C00224.5A571AB0--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Multiple value Select

2000-08-09 Thread Chapman, Katrina

The 3D shouldn't be there.  It's because a very bad David;) is sending
messages in HTML format, or some format other than plain text.  Just remove
any 3D's you may have copied and it should work.

--K

-Original Message-
From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 8:50 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Multiple value Select


OK.  I copied the code into the document.  Now it's not liking the first
quote in the CFSELECT statement:



Did I just misunderstand what the 3D represented?  Is there just a syntax
error I'm not seeing.  Tried to find some reference to it in the books I
have (I assumed it stood for dimension?) with no luck.  

TIA,

Athelene

-Original Message-
From: David E. Crawford [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 7:42 AM
To: [EMAIL PROTECTED]
Subject: Re: Multiple value Select


This is a multi-part message in MIME format.

--=_NextPart_000_00EF_01C001FF.3F8198C0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

RE: Multiple value SelectOk, now we have a bit of information.

Try this:

=20
=20

  =20
=20
=20
=20
=20
   #PG#  =20
=20
=20



Change the order of the parameters to the =
Listfindnocase()/Listcontains() functions.  If EditNameQry.PracticeGroup =
is a comma seperated list and GETPG.PG is a single value, this should =
work.



DC



  - Original Message -=20
  From: Gieseman, Athelene=20
  To: '[EMAIL PROTECTED]'=20
  Sent: Tuesday, August 08, 2000 21:36
  Subject: RE: Multiple value Select


  No.  That field would have multiple items in a comma-delimited format. =
 Not=20
  even the first option is selected.=20

  Athelene=20

  -Original Message-=20
  From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 4:33 PM=20
  To: [EMAIL PROTECTED]=20
  Subject: RE: Multiple value Select=20



  This may be a stupid question but the query EditNameQry is only =
pulling one=20
  value for PracticeGroup.  Right?  If not I'm sure that when you "view=20
  source" you'll see that more than one option is "SELECTED".  That will =

  confuse the browser and it will stay on the first option.=20

  --K=20

  -Original Message-=20
  From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 2:04 PM=20
  To: [EMAIL PROTECTED]=20
  Subject: RE: Multiple value Select=20



  Yo may have a point.. try putting quotes around =
EditNameQry.PracticeGroup.=20

  Plus, if I replace=20

  =20
  with=20

  =20

  the Agribusiness option is selected.  So I think I'm doing something =
wrong=20
  in how I'm using the second parameter of the ListContains.=20

  -Original Message-=20
  From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 4:18 PM=20
  To: '[EMAIL PROTECTED]'=20
  Subject: RE: Multiple value Select=20



  No luck.  I think there's a problem in that the listcontains isn't =
finding=20
  any matches.  I can't figure out why.  I display the previously =
selected=20
  items in another part of the form and it is identical to the options =
in the=20
  database.  There is a comma separating the selected items.  For =
example, the=20
  record viewed via SQL shows:  "Agribusiness,Commercial Litigation" =
(less the=20
  quotes) in the field.  Both of those practice groups are identically =
listed=20
  in the GetPG.PG list.  Yet neither of them are showing up selected in =
the=20
  control.  Plus, if I replace=20

  =20
  with=20

  =20

  the Agribusiness option is selected.  So I think I'm doing something =
wrong=20
  in how I'm using the second parameter of the ListContains.=20



  Athelene=20




  -Original Message-=20
  From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 3:00 PM=20
  To: [EMAIL PROTECTED]=20
  Subject: RE: Multiple value Select=20



  take the cfoutput tags out of the options and put them within the =
entire=20
  select tag:=20

  =20
  =20
  =20
  =20
  =20
  =20
  =20
 #PG#  =20
  =20
  =20

  -Original Message-=20
  From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 3:44 PM=20
  To: '[EMAIL PROTECTED]'=20
  Subject: RE: Multiple value Select=20



  Still no luck.  I also added an rtrim function to each of the fields =
in that=20
  line.  And I've tried David's suggestion of using listcontainsnocase.  =
Still=20
  no luck.  I also changed the code this way:=20

  =20
  =20
  =20
  =20
  =20
  #PG#=20
  #PGSelected#=20

  so that I would be able to see if the PGSelected was being set at all. =
 When=20
  I use this code, the output on all of the options has "Not Select

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Andy Ewings

Okso are you saying that when you re-write the cookie the session/client
variables are cleared?  If that is the case what happens on the server side?
If I am storing client variables in a database o the server and the user
closes their browser the record remains in the database.  When they re-visit
the site the site knows who they are (because of the cookie on their PC) and
gives them the same CFID and CFTOKEN.  Are you saying that by reassigning
these exact same values to the cookies that all of the custom Client
variables will get deleted/reset?

-Original Message-
From: Matt Rodosky [mailto:[EMAIL PROTECTED]]
Sent: 09 August 2000 17:41
To: [EMAIL PROTECTED]
Subject: RE: CFAPPLICATION - Need some advice


The code will keep session variables going as long as the browser stays
open. It will overwrite the old cfid/token when a new browser window is
opened, the result is your old session variables are killed and you start
over.

-Original Message-
From: Andy Ewings [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 10:02 AM
To: '[EMAIL PROTECTED]'
Subject: RE: CFAPPLICATION - Need some advice


I don't think this will do what we are hoping it will.  It looks to me as if
all it's doing is testing to see if the session is open, if it is it's
reading the values from the cookies and then putting them back in
there.am I completely off the mark here??

-Original Message-
From: Matt Rodosky [mailto:[EMAIL PROTECTED]]
Sent: 09 August 2000 16:27
To: [EMAIL PROTECTED]
Subject: RE: CFAPPLICATION - Need some advice


Put this code in your application.cfm file. It will kill the session
variables when the user closes the browser:



  
  
  
  


-Original Message-
From: Miguel [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 9:08 AM
To: '[EMAIL PROTECTED]'
Subject: RE: CFAPPLICATION - Need some advice


There's none, either in asp nor php4
Javascript is the way

Miguel Gonzalez
www.ibcmass.com
mailto:[EMAIL PROTECTED]


> -Mensaje original-
> De: Andy Ewings [mailto:[EMAIL PROTECTED]]
> Enviado el: miércoles 9 de agosto de 2000 14:52
> Para: '[EMAIL PROTECTED]'
> Asunto: RE: CFAPPLICATION - Need some advice
>
>
> Session management is a bit of a nightmare in CF in my
> opinion.  If the user
> closes their browser their session doesn't expire
> automatically.  One only
> way to force it to expire is to use the 'OnUnload' event of
> the browser to
> trigger some Java Script which ends the session.
>
> If anyone else has any other ideas on this I'd love to hear them.
>
>
> -Original Message-
> From: Gavin Myers [mailto:[EMAIL PROTECTED]]
> Sent: 09 August 2000 13:41
> To: '[EMAIL PROTECTED]'
> Subject: CFAPPLICATION - Need some advice
>
>
> I've decided to take a look at application.cfm too see what I
> can gather.
> I've never really used it before
>
> Now in the simplest form:
>
> application.cfm
> 
>
>  sessionmanagement="Yes"
> setclientcookies="Yes">
>
> 
> end application.cfm
>
> The only thing I am using with the application.cfm file is
> #session.sessionid#, and I need to carry that sessionid
> through pages. But,
> I also want to make it so that when a person leaves my site,
> and then goes
> back they don't get the same sessionid, but a brand new one.
> I could set an
> expire date, but I'd rather have it not use the same one over again
> automatically. Any suggestions?
>
> Oh and while were on the subject, I want to set global variables while
> person-x is in the site. Example:
>
> Making a shopping cart that records when a person checks on a
> radio button
> labled purchase. That way when they are 4-99 pages deep they
> can hit buy and
> bring up a list of all of the things they said yes to. So you
> click on yes,
> and it globals the name of the product and the product_id, so I can
> reference it later.
>
> Thanks,
> Gavin
> --
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list
s/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=sts&body=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Robert Everland

Ok well that would explain why a site with frames wouldn't work
right. Is there anyway I can stop this from happening? Maybe putting a lock
around the cfapplication? Something, anything.

Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: Matt Rodosky [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 12:41 PM
To: [EMAIL PROTECTED]
Subject: RE: CFAPPLICATION - Need some advice


The code will keep session variables going as long as the browser stays
open. It will overwrite the old cfid/token when a new browser window is
opened, the result is your old session variables are killed and you start
over.

-Original Message-
From: Andy Ewings [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 10:02 AM
To: '[EMAIL PROTECTED]'
Subject: RE: CFAPPLICATION - Need some advice


I don't think this will do what we are hoping it will.  It looks to me as if
all it's doing is testing to see if the session is open, if it is it's
reading the values from the cookies and then putting them back in
there.am I completely off the mark here??

-Original Message-
From: Matt Rodosky [mailto:[EMAIL PROTECTED]]
Sent: 09 August 2000 16:27
To: [EMAIL PROTECTED]
Subject: RE: CFAPPLICATION - Need some advice


Put this code in your application.cfm file. It will kill the session
variables when the user closes the browser:



  
  
  
  


-Original Message-
From: Miguel [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 9:08 AM
To: '[EMAIL PROTECTED]'
Subject: RE: CFAPPLICATION - Need some advice


There's none, either in asp nor php4
Javascript is the way

Miguel Gonzalez
www.ibcmass.com
mailto:[EMAIL PROTECTED]


> -Mensaje original-
> De: Andy Ewings [mailto:[EMAIL PROTECTED]]
> Enviado el: miércoles 9 de agosto de 2000 14:52
> Para: '[EMAIL PROTECTED]'
> Asunto: RE: CFAPPLICATION - Need some advice
>
>
> Session management is a bit of a nightmare in CF in my
> opinion.  If the user
> closes their browser their session doesn't expire
> automatically.  One only
> way to force it to expire is to use the 'OnUnload' event of
> the browser to
> trigger some Java Script which ends the session.
>
> If anyone else has any other ideas on this I'd love to hear them.
>
>
> -Original Message-
> From: Gavin Myers [mailto:[EMAIL PROTECTED]]
> Sent: 09 August 2000 13:41
> To: '[EMAIL PROTECTED]'
> Subject: CFAPPLICATION - Need some advice
>
>
> I've decided to take a look at application.cfm too see what I
> can gather.
> I've never really used it before
>
> Now in the simplest form:
>
> application.cfm
> 
>
>  sessionmanagement="Yes"
> setclientcookies="Yes">
>
> 
> end application.cfm
>
> The only thing I am using with the application.cfm file is
> #session.sessionid#, and I need to carry that sessionid
> through pages. But,
> I also want to make it so that when a person leaves my site,
> and then goes
> back they don't get the same sessionid, but a brand new one.
> I could set an
> expire date, but I'd rather have it not use the same one over again
> automatically. Any suggestions?
>
> Oh and while were on the subject, I want to set global variables while
> person-x is in the site. Example:
>
> Making a shopping cart that records when a person checks on a
> radio button
> labled purchase. That way when they are 4-99 pages deep they
> can hit buy and
> bring up a list of all of the things they said yes to. So you
> click on yes,
> and it globals the name of the product and the product_id, so I can
> reference it later.
>
> Thanks,
> Gavin
> --
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list
s/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=sts&body=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.hou

Re: Error Handling

2000-08-09 Thread Gregory Harris

Hello Miriam.  While I'm not too familiar with the CFSearch tag, I would imagine that 
the CFTRY/CFCATCH could pick up any such error and then you have control over how 
you'd handle it.  Look up the CFTRY/CFCATCH statements, use those and tell me how it 
works out.

Gregory Harris
Los Angeles ITA Dept.
[EMAIL PROTECTED]


>>> [EMAIL PROTECTED] 08/09 8:42 AM >>>
I am using CFSearch.  If the user enters "and","or", "'" then I get a CF
error.  I would like to catch only this error and display a message to the
user telling them that they entered invalid search criteria.

Thanks,
 
 ---miriam


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ 
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Setting a Cookie and Redirecting the Browser

2000-08-09 Thread Benjamin S. Rogers

Fantastic, Doug. This solution looks like it's going to work. I hadn't
really considered using  until it was mentioned by someone else
and even then, I was a little worried about burden placed on ColdFusion in
such a scenario: I hadn't considered skipping the  and just using
a  if the cookie already exists. I was approaching the problem
from the wrong angle.

Thanks for the suggestion.

Benjamin S. Rogers
Web Developer, c4.net
voice: (508) 240-0051
fax: (508) 240-0057

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 7:53 PM
To: [EMAIL PROTECTED]
Subject: RE: Setting a Cookie and Redirecting the Browser


What about:

if cookie exists
do analysis to determine image
cflocation to image url
if cookie does not exist
do any analysis
cfcontent to distribute the image file

This puts a little more load on CF but realistically you're only shipping a
few k the first time from CF then the rest of the time from another source.

--Doug

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: track page hits

2000-08-09 Thread Truman Esmond III

One way to manage this is to "trick" the stats program into capturing the
query string, by using "/" as a delimiter rather than ? and &
THe latest formURL2attributes.cfm handles this translation.
Using this method, your links to fuseactions would look like:
http://www.foo.com/index.cfm/fuseaction/thefirstfuse/barID/235

I can't say I've used this in a large-scale environment but I have verified
that StatsServer picks up on this; of course the flip side of the problem is
that different attribute values after the fuseaction create a unique hit...

HTH
Truman

-Original Message-
From: Jason Egan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 10:42 AM
To: Ryan
Cc: Cf-Talk
Subject: RE: track page hits


no I haven't... that bites... sometimes you get a lot of help, and sometimes
you get ignored...

Anyhow, I was hoping for something a little less taxing on the system, but
my fusebox apps are designed so that by the fuseaction you can pretty much
tell what page you're on... not always, but basically I was thinking of
running a little script on each page that updated the count on that page in
a table.

I was also considering some other things, like building a client var that
was carried from page to page... with the tokens etc... then I could only
updated the page once per session... if I update then I've only got a
smaller table, or I was toying with just adding the unique hits per session
for each page with time etc... then we could run some reports on date/time
page hits... maybe referrals... etc. maybe to go as far as doing something
so we could tell how long they spent on the page...

who knows... just hoping that there was some input from people, and possibly
some examples or standing products... one of our poor customers would like
to tell what is happening in his cart, but all he can do is count how many
people go in... after that, who knows

I'll keep digging though...

later,
Jason Egan

-Original Message-
From: Ryan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 10:23 AM
To: [EMAIL PROTECTED]
Subject: Re: track page hits


At 13:55 8/8/00 -0600, you wrote:
>Using the fusebox method, the index.cfm is hit a million times per session
>(you know what I mean)...
>
>Any suggestions on tracking the individual pages?
>
>For example, I have a fusebox cart - I would like to track each page in the
>cart so I can tell where/if the cart is being abandoned.

Jason did you get any replies on this? I am interested in this
too. Thanks,

Ryan



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



file name

2000-08-09 Thread Jay Wigginton

Could some please tell me the file name that if present in a directory will
be executed after the current template... same as cfapplication but is
executed afterwards... I have searched the archives and thought I had saved
the file name in my CF tips, but I cannot find it .. 

thanks in advance!
Jay

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: upsizing access to SQL server

2000-08-09 Thread Jeff Sarsoun

I was using ODBC initially.  I switched to OLE DB and that solved the issue.

-Original Message-
From: Andy Ewings [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 11:21 AM
To: '[EMAIL PROTECTED]'
Subject: RE: upsizing access to SQL server


I've just run a small test here and had no problems.  I created an Access
database with 1 table in it with a memo field with data in it.

I then used then imported data into SQL using the Import wizard in SQL 7.  I
did this by selecting MS Access as the source, My SQL server as the
destination (selecting the datbase too), selected Windows NT authentication,
selected "Copy Table(s) from the source database", and it worked fine.  It
brought in the field as an nText.

Is this along the lines of what you tried?

-Original Message-
From: Jeff Sarsoun [mailto:[EMAIL PROTECTED]]
Sent: 09 August 2000 16:00
To: Cf-Talk@Houseoffusion. Com (E-mail)
Subject: upsizing access to SQL server



I am running into memo field issues when upsizing to SQL server 7.0?
I
have been trying to upsize an access2000 db to SQL server by using both the
wizard interface and "import data", but keep getting the error:

"error at destination for row #1, errors encountered so far in this task:1.
Query based insertion or updating of blob values can not be supported."

I searched the cf-talk archive web site for this error and found a
couple
of entries but the fixes prescribed, such as using "import data" rather than
the upsize wizard, (which seem to be the same wizard), did not work for me.

I am selecting Microsoft Access as the source and Microsoft ODBC
driver for
MS SQL server as the destination.  The default settings are using the ntext
data type by default for my Access memo fields.  If I continue I get the
above error for every table that has data in a memo field in my access db.
If I change the data type to varchar or nvarchar it works, then I can change
the datatypes back to ntext with no problems.

I have two problems with this work around.

1.  I have quite a few very large access databases that would require large
amounts of time to manually make these changes.

2.  Data loss could occur due to limits of varchar and nvarchar data types.

If anybody has experienced this, I would appreciate some input.

Thank you


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Verity Collection

2000-08-09 Thread Lewis Steven

This is a multi-part message in MIME format.
--7E8F2795418F173EA3CD98B4
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

I am trying to develop a Verity Index that is going to be available to
other ColdFusion Sites maintained locally.  When I tell the other
ColdFusion servers to MAP an existing collection the CFSEARCHes fail on
the other systems except the one that did the initial indexing. Why does
this happen?

INFO:
I am storing the verity indexes on a separate computer that all the
computers connect to over the network.  I have already given each CF a
user account to access the network drive.

Any idea?

--7E8F2795418F173EA3CD98B4
Content-Type: text/x-vcard; charset=us-ascii;
 name="lewis_steven.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for Steven Lewis
Content-Disposition: attachment;
 filename="lewis_steven.vcf"

begin:vcard 
n:Lewis;Steven
tel;fax:703-845-3939
tel;work:703-845-3996
x-mozilla-html:FALSE
adr:;;
version:2.1
email;internet:[EMAIL PROTECTED]
fn:Steven Lewis
end:vcard

--7E8F2795418F173EA3CD98B4--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Yet another question...

2000-08-09 Thread Zachary Bedell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

> 
>   
>   
>   
>   
>   
> 
> 
> My question is, if they hit the , is ColdFusion 
> smart enough to
> remove the lock before jumping to the other page, or am I 
> setting myself up
> for some unhappy deadlock?  It appears to remove the lock 
> when I test it,
> but I wouldn't mind confirmation of that so I am not setting 
> myself up for
> future problems.

CFLOCATION works by writing a redirect header back to the browser. 
Once that header is sent, the lock is removed.  Then the browser will
request the new page it was sent to & everything will be peachy...

CFLOCK around a CFINCLUDE would be a different story, but...

Best regards,
Zac Bedell

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use 
Comment: Please use PGP!!!

iQA/AwUBOZGKvwraVoMWBwRBEQK9IQCggAV17fj2mDAAEztVrYb9LR7xN8gAoI+p
KpOXNc5UfFb9/ODr3vlnPNSw
=08J1
-END PGP SIGNATURE-
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Yet another question...

2000-08-09 Thread Brad Roberts

Golly, I'm having a time with this.  Yet another mistake. 

Finally:












Maybe I should proof before I send.

Also, should your lock be named a session variable?

Brad

-Original Message-
From: Brad Roberts [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 12:39 PM
To: [EMAIL PROTECTED]
Subject: RE: Yet another  question...



Would this work?















Brad
mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 12:19 PM
To: [EMAIL PROTECTED]
Subject: Yet another  question...


Hey everyone,

This is the code snippet for how I have been typically handling logged in
users:









So, what I want to happen is that if the user exists and is logged in, as
indicated by Session.UserID, I reset the variable so that the poor user
isn't arbitrarily timed while using the system.  If Session.UserID doesn't
exist, they are bounced to a page that displays an error message or gives
them the chance to login.

My question is, if they hit the , is ColdFusion smart enough to
remove the lock before jumping to the other page, or am I setting myself up
for some unhappy deadlock?  It appears to remove the lock when I test it,
but I wouldn't mind confirmation of that so I am not setting myself up for
future problems.

Thanks,

Dana


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Matt Rodosky

The code will keep session variables going as long as the browser stays
open. It will overwrite the old cfid/token when a new browser window is
opened, the result is your old session variables are killed and you start
over.

-Original Message-
From: Andy Ewings [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 10:02 AM
To: '[EMAIL PROTECTED]'
Subject: RE: CFAPPLICATION - Need some advice


I don't think this will do what we are hoping it will.  It looks to me as if
all it's doing is testing to see if the session is open, if it is it's
reading the values from the cookies and then putting them back in
there.am I completely off the mark here??

-Original Message-
From: Matt Rodosky [mailto:[EMAIL PROTECTED]]
Sent: 09 August 2000 16:27
To: [EMAIL PROTECTED]
Subject: RE: CFAPPLICATION - Need some advice


Put this code in your application.cfm file. It will kill the session
variables when the user closes the browser:



  
  
  
  


-Original Message-
From: Miguel [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 9:08 AM
To: '[EMAIL PROTECTED]'
Subject: RE: CFAPPLICATION - Need some advice


There's none, either in asp nor php4
Javascript is the way

Miguel Gonzalez
www.ibcmass.com
mailto:[EMAIL PROTECTED]


> -Mensaje original-
> De: Andy Ewings [mailto:[EMAIL PROTECTED]]
> Enviado el: miércoles 9 de agosto de 2000 14:52
> Para: '[EMAIL PROTECTED]'
> Asunto: RE: CFAPPLICATION - Need some advice
>
>
> Session management is a bit of a nightmare in CF in my
> opinion.  If the user
> closes their browser their session doesn't expire
> automatically.  One only
> way to force it to expire is to use the 'OnUnload' event of
> the browser to
> trigger some Java Script which ends the session.
>
> If anyone else has any other ideas on this I'd love to hear them.
>
>
> -Original Message-
> From: Gavin Myers [mailto:[EMAIL PROTECTED]]
> Sent: 09 August 2000 13:41
> To: '[EMAIL PROTECTED]'
> Subject: CFAPPLICATION - Need some advice
>
>
> I've decided to take a look at application.cfm too see what I
> can gather.
> I've never really used it before
>
> Now in the simplest form:
>
> application.cfm
> 
>
>  sessionmanagement="Yes"
> setclientcookies="Yes">
>
> 
> end application.cfm
>
> The only thing I am using with the application.cfm file is
> #session.sessionid#, and I need to carry that sessionid
> through pages. But,
> I also want to make it so that when a person leaves my site,
> and then goes
> back they don't get the same sessionid, but a brand new one.
> I could set an
> expire date, but I'd rather have it not use the same one over again
> automatically. Any suggestions?
>
> Oh and while were on the subject, I want to set global variables while
> person-x is in the site. Example:
>
> Making a shopping cart that records when a person checks on a
> radio button
> labled purchase. That way when they are 4-99 pages deep they
> can hit buy and
> bring up a list of all of the things they said yes to. So you
> click on yes,
> and it globals the name of the product and the product_id, so I can
> reference it later.
>
> Thanks,
> Gavin
> --
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list
s/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=sts&body=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=sts&body=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

RE: Yet another question...

2000-08-09 Thread Brad Roberts

Oops, correction: 

should be:













Brad


-Original Message-
From: Brad Roberts [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 12:39 PM
To: [EMAIL PROTECTED]
Subject: RE: Yet another  question...



Would this work?















Brad
mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 12:19 PM
To: [EMAIL PROTECTED]
Subject: Yet another  question...


Hey everyone,

This is the code snippet for how I have been typically handling logged in
users:









So, what I want to happen is that if the user exists and is logged in, as
indicated by Session.UserID, I reset the variable so that the poor user
isn't arbitrarily timed while using the system.  If Session.UserID doesn't
exist, they are bounced to a page that displays an error message or gives
them the chance to login.

My question is, if they hit the , is ColdFusion smart enough to
remove the lock before jumping to the other page, or am I setting myself up
for some unhappy deadlock?  It appears to remove the lock when I test it,
but I wouldn't mind confirmation of that so I am not setting myself up for
future problems.

Thanks,

Dana


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Yet another question...

2000-08-09 Thread Dana Larose

Yup, I'll probably start doing your way, but I'm still curious as to how CF
handles my example :)

>
>
> Would this work?
>
>
> 
>   
>   
>   
>   
> 
>
> 
>   
> 
>
>
>
> Brad
>
> -Original Message-
> From: Dana Larose [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 12:19 PM
> To: [EMAIL PROTECTED]
> Subject: Yet another  question...
>
>
> Hey everyone,
>
> This is the code snippet for how I have been typically handling logged in
> users:
>
> 
>   
>   
>   
>   
>   
> 
>
> So, what I want to happen is that if the user exists and is logged in, as
> indicated by Session.UserID, I reset the variable so that the poor user
> isn't arbitrarily timed while using the system.  If Session.UserID doesn't
> exist, they are bounced to a page that displays an error message or gives
> them the chance to login.
>
> My question is, if they hit the , is ColdFusion smart
> enough to
> remove the lock before jumping to the other page, or am I setting
> myself up
> for some unhappy deadlock?  It appears to remove the lock when I test it,
> but I wouldn't mind confirmation of that so I am not setting myself up for
> future problems.
>
> Thanks,
>
> Dana
>
> --
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Yet another question...

2000-08-09 Thread Brad Roberts


Would this work?















Brad
mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 12:19 PM
To: [EMAIL PROTECTED]
Subject: Yet another  question...


Hey everyone,

This is the code snippet for how I have been typically handling logged in
users:









So, what I want to happen is that if the user exists and is logged in, as
indicated by Session.UserID, I reset the variable so that the poor user
isn't arbitrarily timed while using the system.  If Session.UserID doesn't
exist, they are bounced to a page that displays an error message or gives
them the chance to login.

My question is, if they hit the , is ColdFusion smart enough to
remove the lock before jumping to the other page, or am I setting myself up
for some unhappy deadlock?  It appears to remove the lock when I test it,
but I wouldn't mind confirmation of that so I am not setting myself up for
future problems.

Thanks,

Dana


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Yet another question...

2000-08-09 Thread Dana Larose

Hey everyone,

This is the code snippet for how I have been typically handling logged in
users:









So, what I want to happen is that if the user exists and is logged in, as
indicated by Session.UserID, I reset the variable so that the poor user
isn't arbitrarily timed while using the system.  If Session.UserID doesn't
exist, they are bounced to a page that displays an error message or gives
them the chance to login.

My question is, if they hit the , is ColdFusion smart enough to
remove the lock before jumping to the other page, or am I setting myself up
for some unhappy deadlock?  It appears to remove the lock when I test it,
but I wouldn't mind confirmation of that so I am not setting myself up for
future problems.

Thanks,

Dana

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: dynamic pulldowns using a database?

2000-08-09 Thread Anthony Geoghegan

Hi Keith,
I have a CF tag for doing this.
I have found that using this you can develop page size problems as the
relevent javascript can become quite large as the number of possible options
to display increases.
You can see it in action in our cinema sectiona at
www.wow.ie/cinema/index.cfm
If you like I can provide you with same.

Regards,
Anthony Geoghegan
Lead Developer
Ireland Film and Television Net
26 South Frederick Street
Dublin 2
Ireland
Tel: +353 1 671 3664
Fax: +353 1 671 0763
Web: www.iftn.ie www.wow.ie
mailto:[EMAIL PROTECTED]

NOTICE:
This communication is confidential.  The copyright in this communication
belongs to Ireland Film & Television Net (IFTN) or a third party.

If you are not the intended recipient of this communication please delete
and destroy all copies and telephone IFTN on +353 1 671 3664 immediately.
If you are the intended recipient of this communication you should not copy,
disclose or distribute this communication without the authority of IFTN.

Any views expressed in this communication are those of the individual sender
except where the sender specifically states those are of view of IFTN.

Except as required by law IFTN does not represent, warrant, and/guarantee
that the integrity of this communication has been maintained or that the
communication is free of virus, interception or interference.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



  1   2   >