RE: Can this be done?

2010-04-19 Thread Bobby Hartsfield

Take that proactive approach a step further and grab a known good image URL,
and a known bad image URL. Dump the headers and compare.

Worst case scenario, nothing seems out of the ordinary. Then you could do
something else like build a valid list of mime types (valid to you and your
app) and at least compare the results to that list.

-Original Message-
From: Matthew Friedman [mailto:m...@hozgroup.com] 
Sent: Sunday, April 18, 2010 4:43 PM
To: cf-talk
Subject: Can this be done?


We have a site where people are uploading images to our site.

We are using cffile upload, checking the sizing resizing them - all is
working great but
about 2% of the images will sometimes be upload but not able to be displayed
on the site - they might be set as CMYK or some other reason and there is
the red x being displayed.

Here is my question - since I have the full url to the image saved in the
database is there any way that I can check the images that have been
uploaded in the past hour and see if they are working in an automated
format.

My thoughts would be to just loop through the list by hour and using an http
get to see the image - the question is there a host header error or notice
that will indicate that the image is bad and we need to fix the image.

We are trying to be proactive instead of reactive to clients telling us that
there is a bad image on the list.

Thanks for any incite.
Matt 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332971
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can this be done?

2010-04-19 Thread Christopher Stowell

With such a small percentage of images with issues.  Could there be issues of 
the upload itself?  I remember in the past alot of the issues I use to run into 
with images not rendering via the upload usually came back to a bad connection. 
 Tested it with the clients help to verify.  Its different in every case I know 
but just an idea.





From: Matthew Friedman m...@hozgroup.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Sun, April 18, 2010 2:42:42 PM
Subject: Can this be done?


We have a site where people are uploading images to our site.

We are using cffile upload, checking the sizing resizing them - all is working 
great but
about 2% of the images will sometimes be upload but not able to be displayed on 
the site - they might be set as CMYK or some other reason and there is the red 
x being displayed.

Here is my question - since I have the full url to the image saved in the 
database is there any way that I can check the images that have been uploaded 
in the past hour and see if they are working in an automated format.

My thoughts would be to just loop through the list by hour and using an http 
get to see the image - the question is there a host header error or notice that 
will indicate that the image is bad and we need to fix the image.

We are trying to be proactive instead of reactive to clients telling us that 
there is a bad image on the list.

Thanks for any incite.
Matt 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332984
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can this be done?

2010-04-19 Thread Rick Faircloth

When I clients having problems uploading images, I will usually ask
for one or more of the problem images to be sent to me so I can verify
their format or other issues.

Rick

-Original Message-
From: Christopher Stowell [mailto:christopher.stow...@yahoo.com] 
Sent: Sunday, April 18, 2010 5:33 PM
To: cf-talk
Subject: Re: Can this be done?


With such a small percentage of images with issues.  Could there be issues
of the upload itself?  I remember in the past alot of the issues I use to
run into with images not rendering via the upload usually came back to a bad
connection.  Tested it with the clients help to verify.  Its different in
every case I know but just an idea.





From: Matthew Friedman m...@hozgroup.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Sun, April 18, 2010 2:42:42 PM
Subject: Can this be done?


We have a site where people are uploading images to our site.

We are using cffile upload, checking the sizing resizing them - all is
working great but
about 2% of the images will sometimes be upload but not able to be displayed
on the site - they might be set as CMYK or some other reason and there is
the red x being displayed.

Here is my question - since I have the full url to the image saved in the
database is there any way that I can check the images that have been
uploaded in the past hour and see if they are working in an automated
format.

My thoughts would be to just loop through the list by hour and using an http
get to see the image - the question is there a host header error or notice
that will indicate that the image is bad and we need to fix the image.

We are trying to be proactive instead of reactive to clients telling us that
there is a bad image on the list.

Thanks for any incite.
Matt 





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332985
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can this be done?

2010-04-19 Thread Andrew Scott

You actually have two problems here.

Let's talk about the first problem, as it sounds like you are uploading the
file directly to the images directory. This is a major security risk and you
should avoid this.

Second this gives you the opportunity to store the files into a temp
directory that is not accessible by the web, in which you can the run what
you need to make sure that they are indeed images and are of the required
types before deleting them.

Hope that helps.



-Original Message-
From: Matthew Friedman [mailto:m...@hozgroup.com] 
Sent: Monday, 19 April 2010 6:43 AM
To: cf-talk
Subject: Can this be done?


We have a site where people are uploading images to our site.

We are using cffile upload, checking the sizing resizing them - all is
working great but
about 2% of the images will sometimes be upload but not able to be displayed
on the site - they might be set as CMYK or some other reason and there is
the red x being displayed.

Here is my question - since I have the full url to the image saved in the
database is there any way that I can check the images that have been
uploaded in the past hour and see if they are working in an automated
format.

My thoughts would be to just loop through the list by hour and using an http
get to see the image - the question is there a host header error or notice
that will indicate that the image is bad and we need to fix the image.

We are trying to be proactive instead of reactive to clients telling us that
there is a bad image on the list.

Thanks for any incite.
Matt 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332986
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can this be done?

2010-04-19 Thread Rick Faircloth

Can you clarify this some, Andrew?

 Let's talk about the first problem, as it sounds like you are uploading
the
 file directly to the images directory. This is a major security risk and
you
 should avoid this.

If appropriate formats are specified in the cffile accept parameter, what
risk is there?  Some kind of file that fakes its format or has malicious
code
embedded in it?

And concerning your second concern below, I've always assumed that using the
accept parameter was enough to verify file format and prevent malicious
code
from being uploaded in a file.  What other tests are there that can be run
to
verify images?

Thanks,

Rick



-Original Message-
From: Andrew Scott [mailto:andr...@andyscott.id.au] 
Sent: Sunday, April 18, 2010 6:00 PM
To: cf-talk
Subject: RE: Can this be done?


You actually have two problems here.

Let's talk about the first problem, as it sounds like you are uploading the
file directly to the images directory. This is a major security risk and you
should avoid this.

Second this gives you the opportunity to store the files into a temp
directory that is not accessible by the web, in which you can the run what
you need to make sure that they are indeed images and are of the required
types before deleting them.

Hope that helps.



-Original Message-
From: Matthew Friedman [mailto:m...@hozgroup.com] 
Sent: Monday, 19 April 2010 6:43 AM
To: cf-talk
Subject: Can this be done?


We have a site where people are uploading images to our site.

We are using cffile upload, checking the sizing resizing them - all is
working great but
about 2% of the images will sometimes be upload but not able to be displayed
on the site - they might be set as CMYK or some other reason and there is
the red x being displayed.

Here is my question - since I have the full url to the image saved in the
database is there any way that I can check the images that have been
uploaded in the past hour and see if they are working in an automated
format.

My thoughts would be to just loop through the list by hour and using an http
get to see the image - the question is there a host header error or notice
that will indicate that the image is bad and we need to fix the image.

We are trying to be proactive instead of reactive to clients telling us that
there is a bad image on the list.

Thanks for any incite.
Matt 





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332987
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can this be done?

2010-04-19 Thread Dorioo

RE: First problem.

Something like this is the problem:
http://www.coldfusionjedi.com/index.cfm/2009/9/21/How-Galleon-was-Hacked

- Gabriel

On Mon, Apr 19, 2010 at 1:33 PM, Rick Faircloth r...@whitestonemedia.comwrote:


 Can you clarify this some, Andrew?

  Let's talk about the first problem, as it sounds like you are uploading
 the
  file directly to the images directory. This is a major security risk and
 you
  should avoid this.

 If appropriate formats are specified in the cffile accept parameter, what
 risk is there?  Some kind of file that fakes its format or has malicious
 code
 embedded in it?

 And concerning your second concern below, I've always assumed that using
 the
 accept parameter was enough to verify file format and prevent malicious
 code
 from being uploaded in a file.  What other tests are there that can be run
 to
 verify images?

 Thanks,

 Rick



 -Original Message-
 From: Andrew Scott [mailto:andr...@andyscott.id.au]
 Sent: Sunday, April 18, 2010 6:00 PM
 To: cf-talk
 Subject: RE: Can this be done?


 You actually have two problems here.

 Let's talk about the first problem, as it sounds like you are uploading the
 file directly to the images directory. This is a major security risk and
 you
 should avoid this.

 Second this gives you the opportunity to store the files into a temp
 directory that is not accessible by the web, in which you can the run what
 you need to make sure that they are indeed images and are of the required
 types before deleting them.

 Hope that helps.



 -Original Message-
 From: Matthew Friedman [mailto:m...@hozgroup.com]
 Sent: Monday, 19 April 2010 6:43 AM
 To: cf-talk
 Subject: Can this be done?


 We have a site where people are uploading images to our site.

 We are using cffile upload, checking the sizing resizing them - all is
 working great but
 about 2% of the images will sometimes be upload but not able to be
 displayed
 on the site - they might be set as CMYK or some other reason and there is
 the red x being displayed.

 Here is my question - since I have the full url to the image saved in the
 database is there any way that I can check the images that have been
 uploaded in the past hour and see if they are working in an automated
 format.

 My thoughts would be to just loop through the list by hour and using an
 http
 get to see the image - the question is there a host header error or notice
 that will indicate that the image is bad and we need to fix the image.

 We are trying to be proactive instead of reactive to clients telling us
 that
 there is a bad image on the list.

 Thanks for any incite.
 Matt





 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332988
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can this be done?

2010-04-19 Thread Ian Skinner

On 4/19/2010 10:33 AM, Rick Faircloth wrote:
 If appropriate formats are specified in the cffile accept parameter, what
 risk is there?  Some kind of file that fakes its format or has malicious
 code embedded in it?


Yes, that can happen.

 And concerning your second concern below, I've always assumed that using the
 accept parameter was enough to verify file format and prevent malicious
 code from being uploaded in a file.  What other tests are there that can be 
 run
 to verify images?


No, accept simple looks at the file name.  I can name my CFML hacking 
file myImage.jpg and it will pass an accept test just fine.  It is not 
quite as simple as that to get an code file to fake being an image 
file.  But if find that I sleep much easier, if I do *not* underestimate 
the resourcefulness of hackers.  The isImage() function should help, 
since it actually looks at the file binary data not just the file name.




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332990
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can this be done?

2010-04-19 Thread Matthew Friedman

We were aware of the security issues so we do upload to a temporary location, 
we then check the sizing of the images and create thumbnails and reduce the 
size to the correct size.

The weird thing is the images that do not work - are images.  If we pull the 
file down, open it in PhotoShop and re save the image and upload it back to the 
correct folder all works fine.

So using the isImage() function I am not sure if that will solve this.

Question I have is if you save an image as a CMYK format and then use CF to 
manipulate that image, will it create an issue where the browser can not render 
it correctly and place a missing image.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332992
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can this be done?

2010-04-19 Thread Rick Faircloth

Thanks for the feedback, Ian.
I'll at least start making use of the isImage() function.

Rick

-Original Message-
From: Ian Skinner [mailto:h...@ilsweb.com] 
Sent: Monday, April 19, 2010 1:57 PM
To: cf-talk
Subject: Re: Can this be done?


On 4/19/2010 10:33 AM, Rick Faircloth wrote:
 If appropriate formats are specified in the cffile accept parameter,
what
 risk is there?  Some kind of file that fakes its format or has malicious
 code embedded in it?


Yes, that can happen.

 And concerning your second concern below, I've always assumed that using
the
 accept parameter was enough to verify file format and prevent malicious
 code from being uploaded in a file.  What other tests are there that can
be run
 to verify images?


No, accept simple looks at the file name.  I can name my CFML hacking 
file myImage.jpg and it will pass an accept test just fine.  It is not 
quite as simple as that to get an code file to fake being an image 
file.  But if find that I sleep much easier, if I do *not* underestimate 
the resourcefulness of hackers.  The isImage() function should help, 
since it actually looks at the file binary data not just the file name.






~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332993
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can this be done?

2010-04-19 Thread Eric Nicholas Sweeney

Matt - 

I have the same problem with a client - they receive images from a 3rd party
- and when they upload them they don't show up in IE. (They do in FF
though...)  Resaving in photoshop doesn't always fix the issue either...
Sometimes we have to make a NEW image - then cut and paste the pic into it
to save to the correct format...

However - I am not aware of any method for testing the JPGs formats through
CF...  (Or even what is really wrong with these JPGS - I just assume
something is wrong with the way they were originally created - perhaps
using RAW?)  RGB vs CMYK isn't necessarily the problem... At least for me.
(Some of the JPGS in CMYK actually show up... Others in GRB don't...?! )

Only thing I can say - is try that conversion stuff and see what happens.
And please post the answer - would LOVE to know the answer.

- Nick




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332994
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can this be done?

2010-04-19 Thread Andy Matthews

There are several things which could be wrong.

- Unidentified, or incorrect, color profile
- Image is in CMYK. ColdFusion might not mind this, but many browsers won't
display these images.


andy
 


-Original Message-
From: Eric Nicholas Sweeney [mailto:n...@bigfatdesigns.com] 
Sent: Monday, April 19, 2010 1:43 PM
To: cf-talk
Subject: RE: Can this be done?


Matt - 

I have the same problem with a client - they receive images from a 3rd party
- and when they upload them they don't show up in IE. (They do in FF
though...)  Resaving in photoshop doesn't always fix the issue either...
Sometimes we have to make a NEW image - then cut and paste the pic into it
to save to the correct format...

However - I am not aware of any method for testing the JPGs formats through
CF...  (Or even what is really wrong with these JPGS - I just assume
something is wrong with the way they were originally created - perhaps
using RAW?)  RGB vs CMYK isn't necessarily the problem... At least for me.
(Some of the JPGS in CMYK actually show up... Others in GRB don't...?! )

Only thing I can say - is try that conversion stuff and see what happens.
And please post the answer - would LOVE to know the answer.

- Nick






~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332996
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can this be done?

2010-04-19 Thread Chuck Weidler

I don't see where you mention what version of ColdFusion you are using, but if 
you are using CF8+ then here is what I do.  I also have a site that uploads 
images.

cfimage action=read source=C:\ImgStore\TheUploadedImage.jpg name=myImage
cfset Info = ImageInfo(myImage)
!--- LOOK AT THE COLORSPACE TO SEE IF IT IS AN IMAGE THAT A BROWSER CAN USE 
---
cfif NOT FindNoCase(CMYK, Info.colormodel.colorspace)
!--- DO SOMETHING WITH THE IMAGE ---
cfelse
!--- DELETE THE IMAGE OR DO SOMETHING ELSE WITH THE IMAGE ---
/cfif

HTH
Chuck


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332997
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can this be done?

2010-04-19 Thread Rick Faircloth

Good stuff, Chuck!

I've been using cfimage like crazy since CF8, but there are so
many other image functions I haven't used or am not even aware of!
Time to have a look at them!

Rick

-Original Message-
From: Chuck Weidler [mailto:h...@coldfusionguru.com] 
Sent: Monday, April 19, 2010 4:08 PM
To: cf-talk
Subject: Re: Can this be done?


I don't see where you mention what version of ColdFusion you are using, but
if you are using CF8+ then here is what I do.  I also have a site that
uploads images.

cfimage action=read source=C:\ImgStore\TheUploadedImage.jpg
name=myImage
cfset Info = ImageInfo(myImage)
!--- LOOK AT THE COLORSPACE TO SEE IF IT IS AN IMAGE THAT A BROWSER CAN USE
---
cfif NOT FindNoCase(CMYK, Info.colormodel.colorspace)
!--- DO SOMETHING WITH THE IMAGE ---
cfelse
!--- DELETE THE IMAGE OR DO SOMETHING ELSE WITH THE IMAGE ---
/cfif

HTH
Chuck




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332998
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can this be done?

2010-04-19 Thread Jason Fisher

2 types of JPG that can cause problems: CMYK and progressive JPEG.  As 
others have noted on this thread, this is not just a problem with the 
image engine used by CF, but is a problem with any browser as well.  
CMYK images will *not* (in my experience) convert properly within CF 
image functions.  As Chuck noted, you can look into the colorspace to 
determine some of these potential pitfalls, but I find that isImage() is 
my single greatest friend when it comes to these JPG issues.  MIMETypes 
are no help, of course, since these are really binaries within the 
correct MIME space ... there just happens to be some critical variation 
within that space.

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332999
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Can this be done?

2010-04-18 Thread Matthew Friedman

We have a site where people are uploading images to our site.

We are using cffile upload, checking the sizing resizing them - all is working 
great but
about 2% of the images will sometimes be upload but not able to be displayed on 
the site - they might be set as CMYK or some other reason and there is the red 
x being displayed.

Here is my question - since I have the full url to the image saved in the 
database is there any way that I can check the images that have been uploaded 
in the past hour and see if they are working in an automated format.

My thoughts would be to just loop through the list by hour and using an http 
get to see the image - the question is there a host header error or notice that 
will indicate that the image is bad and we need to fix the image.

We are trying to be proactive instead of reactive to clients telling us that 
there is a bad image on the list.

Thanks for any incite.
Matt 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332969
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can this be done?

2010-04-18 Thread Brian McCairn

does isImageFile() do this? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332970
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: PDF Support with CF8 - Can this be done?

2007-11-05 Thread James Davis
I'm trying to do something similar as well, but trying to merge database
content into a PDF form then generate 1 large PDF with multiple pages.

Is this possible with the new tags?  When I tried using cfpdfform
action=marge on a directory of PDF's.  They were all blank.

James Davis
Software Engineer
Kaleida Systems, Inc.

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: Friday, November 02, 2007 1:38 PM
To: CF-Talk
Subject: Re: PDF Support with CF8 - Can this be done?

Yes, CF8 can do what you need to do very easily.

Damon


What I need to do is take information posted from a web form and merge
it
into an existing PDF with place holders
and then save the file and email it as an attachement.

Can CF 8 do the PDF portion natively?




~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292672
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Support with CF8 - Can this be done?

2007-11-05 Thread Todd
Did you try action=merge? :)

On Nov 5, 2007 12:15 PM, James Davis [EMAIL PROTECTED] wrote:

 I'm trying to do something similar as well, but trying to merge database
 content into a PDF form then generate 1 large PDF with multiple pages.

 Is this possible with the new tags?  When I tried using cfpdfform
 action=marge on a directory of PDF's.  They were all blank.

 James Davis
 Software Engineer
 Kaleida Systems, Inc.



~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292685
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: PDF Support with CF8 - Can this be done?

2007-11-05 Thread James Davis
Sorry..typo writing my email. Might be a case of the Mondays? :)

Yes, I used action=merge, NOT action=mArge. 

Any other ideas?

James Davis
Software Engineer
Kaleida Systems, Inc.

-Original Message-
From: Todd [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 05, 2007 1:15 PM
To: CF-Talk
Subject: Re: PDF Support with CF8 - Can this be done?

Did you try action=merge? :)

On Nov 5, 2007 12:15 PM, James Davis [EMAIL PROTECTED]
wrote:

 I'm trying to do something similar as well, but trying to merge
database
 content into a PDF form then generate 1 large PDF with multiple pages.

 Is this possible with the new tags?  When I tried using cfpdfform
 action=marge on a directory of PDF's.  They were all blank.

 James Davis
 Software Engineer
 Kaleida Systems, Inc.





~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292702
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread Ben Doom
If I understand what it is you want to do, look into cfpdfform. 
You'll have to build an XML data object to hold the form data, but that 
shouldn't be too difficult.

--Ben Doom

Frank Mamone wrote:
 Hi everyone,
 
 I've been out of the CF game for a very long time and now I have a little
 project to do and wondering
 if CF8 has the answer for me. I'll keep search the docs, but in case you
 have a quick answer I appreciate it.
 
 What I need to do is take information posted from a web form and merge it
 into an existing PDF with place holders
 and then save the file and email it as an attachement.
 
 Can CF 8 do the PDF portion natively?
 
 Thank you,
 
 Frank Mamone
 
 
 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292534
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


PDF Support with CF8 - Can this be done?

2007-11-02 Thread Frank Mamone
Hi everyone,

I've been out of the CF game for a very long time and now I have a little
project to do and wondering
if CF8 has the answer for me. I'll keep search the docs, but in case you
have a quick answer I appreciate it.

What I need to do is take information posted from a web form and merge it
into an existing PDF with place holders
and then save the file and email it as an attachement.

Can CF 8 do the PDF portion natively?

Thank you,

Frank Mamone


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292526
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Hi everyone,

I've been out of the CF game for a very long time and now I have a little
project to do and wondering
if CF8 has the answer for me. I'll keep search the docs, but in case you
have a quick answer I appreciate it.

What I need to do is take information posted from a web form and merge it
into an existing PDF with place holders
and then save the file and email it as an attachement.

Can CF 8 do the PDF portion natively?

Thank you,

Frank Mamone 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292553
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread Bryan Stevenson
Yes it can...CFDOCUMENTpretty straightforward

welcome back ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.


~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292556
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Yes, CF8 can do what you need to do very easily.

Damon


What I need to do is take information posted from a web form and merge it
into an existing PDF with place holders
and then save the file and email it as an attachement.

Can CF 8 do the PDF portion natively?


~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292554
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread Frank Mamone
Thanks everyone...I'll start looking at those tags on Adobe. It feels
strange to say Adobe. Last time I used CF it was MM.

Great to be back!

Frank

On Nov 2, 2007 1:19 PM, Bryan Stevenson [EMAIL PROTECTED]
wrote:

 Yes it can...CFDOCUMENTpretty straightforward

 welcome back ;-)

 Cheers

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 phone: 250.480.0642
 fax: 250.480.1264
 cell: 250.920.8830
 e-mail: [EMAIL PROTECTED]
 web: www.electricedgesystems.com

 Notice:
 This message, including any attachments, is confidential and may contain
 information that is privileged or exempt from disclosure. It is intended
 only for the person to whom it is addressed unless expressly authorized
 otherwise by the sender. If you are not an authorized recipient, please
 notify the sender immediately and permanently destroy all copies of this
 message and attachments.


 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292597
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Can this be done

2007-10-31 Thread Toby King
Hi there

Is there anything simpler than that.

Hi there

I’m in the process of finalising the developing an application to handle 
personal training sessions at a gym – basically there are 6 or more personal 
trainers who each have more than 60 clients that they work with for ½ hour up 
to 2 hour sessions.  A person at the front desk manages their bookings.

Basically I’m developing a system for the gym to enable the person at the 
front desk to enter details of bookings etc.  These details will once entered 
into the system will be in one of 3 states.

1.  Waiting bookings
2.  Bookings in process
3.  Completed bookings

On the front screen of the application I’m planning on displaying – current 
bookings in process and underneath that waiting bookings.

E.G.
Sessions in Progress
Trainer   RoomStart   FinishRemaining TimeOverTime   Manage 
Sandra1 05:09 PM 06:09 PM   Time has Passed 5 Minutes(s)  Edit

E.G.
Waiting Bookings
Trainer   RoomStart   FinishRemaining TimeOverTime   Manage 
Rob1 06:00 PM 07:00 PM  Waiting  N/A  Edit

I was initially thinking once the Edit link was clicked open up a pop-up window 
to let the user edit the record.  Is there a better way so basically the user 
can just click a button and then by clicking on that button the status would be 
changed.

Another couple of points – I have set the page to refresh every 60 seconds so 
that way it will be easy for reception to quickly determine how long is 
remaining in any given session.

The question I have relates to the following:

Take the bottom part of the screen (bookings made but the session has not yet 
started).  These will be displayed.  I would like to somehow give the user a 
simple way to start a booking.  I was thinking of letting the user click on the 
little Edit link under manage and open a pop-up window to edit the record and 
change the status from waiting to session started.  

And similarly I would like to make it easy for a person to be able to click a 
button to indicate that a current booking has been completed – i.e. click on 
a button then  it would change the status from current to complete.

Just wondering what would be the simplest yet effective implementation.  I was 
thinking of using AJAX but at this stage I haven’t used AJAX previously so 
not too sure about it.

The idea of opening up a pop-up window and letting a user edit the record would 
work but it seems a little cumbersome and not really that user friendly.

Any ideas.

Thanks in advance.



JQuery is your friend:) Something like this should work:

script
   $(document).ready(function(){
   // Here's a reference to our form
   var frm = $('form##testForm');
   // Assign an onChange event handler
   $('input[type=checkbox]',frm).change(function(){
   // Create a JSON object to use in our Ajax call
   var postObj = new Object();
   postObj = {action : this.checked ? 
 'add':'delete',id : 
$(this).val()};
   // Ajax call to our CFC, taking 'action' and 'id' as 
 args
   // 'success' is indicative of a successful Ajax call,
   // and will show whatever message is returned from your 
 method
   $.ajax({
   url: processor.cfc,
   type: POST,
   data: postObj,
   success: function(msg){
   $('div##msgDisplay').html(msg);
   },
   error: function(){
   $('div##msgDisplay').html('There was an 
 error processing your 
request.');
   }
   });
   });
   });
/script

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Peter Tanswell wrote:


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292399
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Can this be done

2007-10-31 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Does a user have to have interaction on the homepage?  If the classes are
defined by time, you could do something simple like have the homepage check
the date and time and show the classes that fall within the current date and
time range.  That would be simple.

 I am developing an application for a gym. 
 
 On the home page of the application I am currently displaying details 
 of personal training sessions which are in progress, and also thos 
 sessions which are waiting to be started. 
 
 Sessions in progress 
 
 P/TrainerRoom # Start Time Finish Time  Remaing Time
 
 Rob   17:00   8:00 25 mins
 Mick  27308:30 55 mins
 
 
 Sessions waiting to start
 
 P/TrainerRoom # Start Time Finish Time  Remaing Time
 
 Rob   1
 Mick  2
 
 
 I have also set this page up to referesh every 60 seconds  - this part 
 works well and as intended. 
 
 I could I guess add a button for each record which would allow a user 
 to edit each record individually, but am wondering if there is another 
 simpler way that this could be done - e.g. maybe a checkbox which the 
 user checks and then when the screen refeshes any records with 
 checkboxes marked have their status changed.
 
 Basically I want to enable a user to be able to effortlessly indicate 
 that a session has been completed so that record does not continue to 
 be displayed).  Also I want the user to indicate that a session has 
 moved from the waiting state to the active state. 
 
 I was thinking of including a check box which can be clicked - to 
 indicate that a record can move from the wating state to current. 
 
 Any thoughts on this will be greatly appreciated. 
 
 Thanks 


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292404
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Can this be done

2007-10-30 Thread Toby King
I am developing an application for a gym. 

On the home page of the application I am currently displaying details of 
personal training sessions which are in progress, and also thos sessions which 
are waiting to be started. 

Sessions in progress 

P/TrainerRoom # Start Time Finish Time  Remaing Time

Rob   17:00   8:00 25 mins
Mick  27308:30 55 mins


Sessions waiting to start

P/TrainerRoom # Start Time Finish Time  Remaing Time

Rob   1
Mick  2


I have also set this page up to referesh every 60 seconds  - this part works 
well and as intended. 

I could I guess add a button for each record which would allow a user to edit 
each record individually, but am wondering if there is another simpler way that 
this could be done - e.g. maybe a checkbox which the user checks and then when 
the screen refeshes any records with checkboxes marked have their status 
changed.

Basically I want to enable a user to be able to effortlessly indicate that a 
session has been completed so that record does not continue to be displayed).  
Also I want the user to indicate that a session has moved from the waiting 
state to the active state. 

I was thinking of including a check box which can be clicked - to indicate that 
a record can move from the wating state to current. 

Any thoughts on this will be greatly appreciated. 

Thanks 


~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292313
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Can this be done

2007-10-30 Thread Bobby Hartsfield
Sounds like a good place for a little ajax magic. When you check a box, it'd
be cool to update the status without leaving or refreshing the page.
You could also use some ajax to have the remaining time update in real time
as well.

..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com




~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292318
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Can this be done

2007-10-30 Thread Ben Nadel
Pete,

I would look into jQuery for AJAX. It is rockin' simple:

$( input.status ).click(
function(){
var jCheckbox = $( this );
$.get(
change_status.cfm,
{ id: jCheckbox.attr( id ) },
function(){ ... Callback ... }
);
}
); 


..
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Peter Tanswell [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 30, 2007 9:07 AM
To: CF-Talk
Subject: Re: Can this be done

Yeah


I had just been browsing a book on AJAX, but havent used it before so a
liitle bit lost.

Any suggestions or anywhere where I can get enough info to let me do
this?

Thanks in advance.





On 10/30/07, Bobby Hartsfield [EMAIL PROTECTED] wrote:

 Sounds like a good place for a little ajax magic. When you check a 
 box, it'd be cool to update the status without leaving or refreshing 
 the page.
 You could also use some ajax to have the remaining time update in real

 time as well.

 ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
 Bobby Hartsfield
 http://acoderslife.com




 



~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292325
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Can this be done

2007-10-30 Thread Peter Tanswell
Yeah


I had just been browsing a book on AJAX, but havent used it before so a
liitle bit lost.

Any suggestions or anywhere where I can get enough info to let me do this?

Thanks in advance.





On 10/30/07, Bobby Hartsfield [EMAIL PROTECTED] wrote:

 Sounds like a good place for a little ajax magic. When you check a box,
 it'd
 be cool to update the status without leaving or refreshing the page.
 You could also use some ajax to have the remaining time update in real
 time
 as well.

 ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
 Bobby Hartsfield
 http://acoderslife.com




 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292322
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Can this be done

2007-10-30 Thread Cutter (CFRelated)
JQuery is your friend:) Something like this should work:

script
$(document).ready(function(){
// Here's a reference to our form
var frm = $('form##testForm');
// Assign an onChange event handler
$('input[type=checkbox]',frm).change(function(){
// Create a JSON object to use in our Ajax call
var postObj = new Object();
postObj = {action : this.checked ? 
'add':'delete',id : 
$(this).val()};
// Ajax call to our CFC, taking 'action' and 'id' as 
args
// 'success' is indicative of a successful Ajax call,
// and will show whatever message is returned from your 
method
$.ajax({
url: processor.cfc,
type: POST,
data: postObj,
success: function(msg){
$('div##msgDisplay').html(msg);
},
error: function(){
$('div##msgDisplay').html('There was an 
error processing your 
request.');
}
});
});
});
/script

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Peter Tanswell wrote:
 Yeah
 
 
 I had just been browsing a book on AJAX, but havent used it before so a
 liitle bit lost.
 
 Any suggestions or anywhere where I can get enough info to let me do this?
 
 Thanks in advance.
 
 
 
 
 
 On 10/30/07, Bobby Hartsfield [EMAIL PROTECTED] wrote:
 Sounds like a good place for a little ajax magic. When you check a box,
 it'd
 be cool to update the status without leaving or refreshing the page.
 You could also use some ajax to have the remaining time update in real
 time
 as well.

 ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
 Bobby Hartsfield
 http://acoderslife.com





 
 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292329
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Can this be done?

2007-05-18 Thread Will Tomlinson
Is a live chat app out of the question?

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278590
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Can this be done?

2007-05-18 Thread Erik-Jan Jaquet
Hi all,

I am breaking my head over something, and I hope someone can tell me if, and 
how, this van be done.

A client wants some sort of 'Live helper' functionality on the website, where a 
web visitor fills in a form with a questions, that question is then delivered 
to an MSN account within the company. The company responds via MSN, and the 
response must then be shown to the user.

I have set up an MSN Gateway, I can send messages to the MSN account and 
receive messages from that MSN account. But I am not able to figure out how to 
show the user the response, other then letting the gateway add it to the DB, 
and let the app pull it from the DB. But I don't want to do that, because it is 
a lot of data to put in the DB.

Is there any other way?

Hope you can help!

Kind regards,

Erik-Jan

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278589
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Can this be done?

2007-05-18 Thread Erik-Jan Jaquet
The client want to use MSN as the client, so yes, for this solution it is...

2007/5/18, Will Tomlinson [EMAIL PROTECTED]:

 Is a live chat app out of the question?

 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278600
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Can this be done?

2007-05-18 Thread Randy Johnson
What about using the same application name for the whole app so when you 
receive the message back save it to the application scope and the users 
response page can check the application scope for the response.  maybe 
an array treated as a queue or something

-Randy

Erik-Jan Jaquet wrote:
 Hi all,

 I am breaking my head over something, and I hope someone can tell me if, and 
 how, this van be done.

 A client wants some sort of 'Live helper' functionality on the website, where 
 a web visitor fills in a form with a questions, that question is then 
 delivered to an MSN account within the company. The company responds via MSN, 
 and the response must then be shown to the user.

 I have set up an MSN Gateway, I can send messages to the MSN account and 
 receive messages from that MSN account. But I am not able to figure out how 
 to show the user the response, other then letting the gateway add it to the 
 DB, and let the app pull it from the DB. But I don't want to do that, because 
 it is a lot of data to put in the DB.

 Is there any other way?

 Hope you can help!

 Kind regards,

 Erik-Jan

 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278615
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Can this be done?

2007-05-18 Thread Randy Johnson
A database solution would not be bad either because you could delete 
conversations that have not had any messages added within a certain time 
frame

-Randy

Erik-Jan Jaquet wrote:
 Hi all,

 I am breaking my head over something, and I hope someone can tell me if, and 
 how, this van be done.

 A client wants some sort of 'Live helper' functionality on the website, where 
 a web visitor fills in a form with a questions, that question is then 
 delivered to an MSN account within the company. The company responds via MSN, 
 and the response must then be shown to the user.

 I have set up an MSN Gateway, I can send messages to the MSN account and 
 receive messages from that MSN account. But I am not able to figure out how 
 to show the user the response, other then letting the gateway add it to the 
 DB, and let the app pull it from the DB. But I don't want to do that, because 
 it is a lot of data to put in the DB.

 Is there any other way?

 Hope you can help!

 Kind regards,

 Erik-Jan

 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278616
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Can this be done?

2007-05-18 Thread James Wolfe
 I have set up an MSN Gateway, I can send messages to the MSN account 
 and receive messages from that MSN account. But I am not able to 
 figure out how to show the user the response, other then letting the 
 gateway add it to the DB, and let the app pull it from the DB. But I 
 don't want to do that, because it is a lot of data to put in the DB.
 
 Is there any other way?


You can, in theory, put the response into an application or server variable in 
the handler from the event gateway and have JS poll a CF page that looks for a 
response.

Heres a sample implementation.

User enters in question in form on webpage. Javascript submits question via 
XMLHTTP post to CF page.

CF Page posts question to MSN user and prefixes a UUID (or the users 
CFID/CFToken/JSessionID/any unique ID) to the  question. For example:

   WebsiteMSN_User: [987124] - Do you guys sell widgets?

And returns that unique as the response of the XMLHTTP request. Javascript 
holds that number in memory and polls a different page 
(getResponse.cfm?msgID=987124) every 5-10 seconds (or uses a hanging get, 
whatever you prefer) passing that number as a parameter to the page.

MSN user responds, prefixing the same code to his response

   MSNUser: [987124] - we do sell widgets, click on Cogs/Widgets on the top 
menu bar and you will see it

 You would add an application variable in your msn event gateway incoming 
message handler that would create a variable 

cfset application.msnDialogue.987124 = we do sell widgets, click on 
Cogs/Widgets on the top menu bar and you will see it

Finally, the getResponse.cfm page would look for that variable and if it found 
it, return it and structDelete it so you dont have too many variables sitting 
in memory.

Its not elegant, but it will work without a DB.

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278620
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Can this be done?

2007-05-18 Thread chopper
More specifically, look at the meebo me embeddable widget:
http://www.meebome.com/

On 5/18/07, chopper [EMAIL PROTECTED] wrote:
 Have you looked at meebo.com

 It allows you to embed a chat client in your webpage that connects to
 an MSN account.

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278635
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Can this be done?

2007-05-18 Thread chopper
Have you looked at meebo.com

It allows you to embed a chat client in your webpage that connects to
an MSN account.

On 5/18/07, James Wolfe [EMAIL PROTECTED] wrote:
  I have set up an MSN Gateway, I can send messages to the MSN account
  and receive messages from that MSN account. But I am not able to
  figure out how to show the user the response, other then letting the
  gateway add it to the DB, and let the app pull it from the DB. But I
  don't want to do that, because it is a lot of data to put in the DB.
 
  Is there any other way?

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278634
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread Andy Mcshane
Before I spend a load of time that I really do not have available at present 
experimenting with this I thought that I would ask the question here. I was 
wondering if anybody has ever dynamically built a cfstoredproc tag and then 
executed it. The situation I have is that I have ben asked if it is possible to 
dynamically build a cfstoredproc tag on the fly when you only know the number 
and type of parameters and SQL stored procedure name at run time. Has anybody 
ever done anything like this before? 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263697
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread Teddy Payne
This can be accomplished in SQL Server without dynamically writing the
stored procedure.

You have to pass in the maximum number of parameters every time to the
stored procedure.  To do this, you cfparam all of the proc params above the
stored procedure call.  Inside of the stored procedure, you detect for the
default values of each paramater.  If the default value is there, you set
the sql variable to null.

Now the rea magic is where you use the variable inside of the queries:

if @foo = 0
begin
select @foo = null
end

select
*
from
bar b
where
IsNull(b.foo,'') = IsNull(NullIf(@foo,''),IsNull(b.foo,''))

If @foo is null, the where clause is never executed and all values are
returned.  If @foo has a value, the where clause is executed and you have a
filtered data.

So in short, you can any number of variables passed as long as you pass a
default value that you detect for inside the procedure.  It is also not
dynamically written so that the execution plan will stay consistent.

Teddy






On 12/12/06, Andy Mcshane [EMAIL PROTECTED] wrote:

 Before I spend a load of time that I really do not have available at
 present experimenting with this I thought that I would ask the question
 here. I was wondering if anybody has ever dynamically built a cfstoredproc
 tag and then executed it. The situation I have is that I have ben asked if
 it is possible to dynamically build a cfstoredproc tag on the fly when you
 only know the number and type of parameters and SQL stored procedure name at
 run time. Has anybody ever done anything like this before?

 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263718
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread Teddy Payne
Caveat: A fellow developer Allen Underwood demonstrated the perfection of
this clauseto me a year ago.

Teddy

On 12/12/06, Teddy Payne [EMAIL PROTECTED] wrote:

 This can be accomplished in SQL Server without dynamically writing the
 stored procedure.

 You have to pass in the maximum number of parameters every time to the
 stored procedure.  To do this, you cfparam all of the proc params above the
 stored procedure call.  Inside of the stored procedure, you detect for the
 default values of each paramater.  If the default value is there, you set
 the sql variable to null.

 Now the rea magic is where you use the variable inside of the queries:

 if @foo = 0
 begin
 select @foo = null
 end

 select
 *
 from
 bar b
 where
 IsNull(b.foo,'') = IsNull(NullIf(@foo,''),IsNull(b.foo,''))

 If @foo is null, the where clause is never executed and all values are
 returned.  If @foo has a value, the where clause is executed and you have a
 filtered data.

 So in short, you can any number of variables passed as long as you pass a
 default value that you detect for inside the procedure.  It is also not
 dynamically written so that the execution plan will stay consistent.

 Teddy






 On 12/12/06, Andy Mcshane [EMAIL PROTECTED] wrote:
 
  Before I spend a load of time that I really do not have available at
  present experimenting with this I thought that I would ask the question
  here. I was wondering if anybody has ever dynamically built a cfstoredproc
  tag and then executed it. The situation I have is that I have ben asked if
  it is possible to dynamically build a cfstoredproc tag on the fly when you
  only know the number and type of parameters and SQL stored procedure name at
  run time. Has anybody ever done anything like this before?
 
  

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263719
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread Jacob Munson
 The situation I have is that I have ben asked if it is possible to dynamically
 build a cfstoredproc tag on the fly when you only know the number and type
 of parameters and SQL stored procedure name at run time. Has anybody
 ever done anything like this before?

No, I haven't, but you could build it by creating the CF code for the
cfstoredproc as strings (with cfset or something), save it to a file,
and then cfinclude that file to run it.  This is the only way I know
of to dynamically create/execute CF code.


-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263721
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Dynamicaly Building CFSTOREDPROC tag, can it be done?

2006-12-12 Thread greg h
Andy,

I think you can still execute procs in CFQUERY.  If you want, try using CF
to build up the SQL that calls the proc in variables, and then send it to
the server by putting the #sqlprocstmt# inside a CFQUERY block.  e.g.:
CFQUERY ... #sqlprocstmt#/CFQUERY

Executing procs via CFQUERY limits you to capturing only 1 result set (for
more than 1 result set you need CFPROCRESULT).

Please do post back and let us know what approach you end up using.

Also, just curious, what database are you using?

hth,

g


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263884
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Ok Java gurus can this be done

2004-05-30 Thread Andrew Scott
Ok,

 
On the weekend I was looking at creating a variable back to CF, I am aware
that you can create structures and normal string variables as well as
queries...

 
But is there a way you can create a variable that can contain an array?

 
I can see potential for it but couldn't find a way to do this...

 
Anyone done it or maybe know how to do it..

Regards
Andrew Scott
Technical Consultant

NuSphere Pty Ltd
Level 2/33 Bank Street
South Melbourne, Victoria, 3205

Phone: 03 9686 0485-Fax: 03 9699 7976
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




re: Can this be done??

2003-11-26 Thread Bushy
Hi,

I have a frame split in half (topframe  bottomframe).

I the top frame I'm listing directories/files which have links to them. Beside each directory/file is an image that when clicked I want to send the link information to the bottom frame asthe path.
Each time a link is clicked the bottom frame would get updated with a new entry.

For example (+ is directory, - is files):

Top frame listing
-

Directory Listing:

+ changes
+ delivery
+ late
+ schedule
- data.txt
- test.txt
- mywork.txt

So if a user click on a the directory changes link the file path and name are passed to the bottom frame. user then click on the directory late and then filename test.txt

Bottom frame:
-

changes
late
test.txt

How could this be done?




 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Can this be done??

2003-11-26 Thread Heald, Tim
_javascript_.

Timothy Heald 
Web Portfolio Manager 
Overseas Security Advisory Council 
U.S. Department of State 
571.345.2319 

The opinions expressed here do not necessarily reflect those of the U.S.
Department of State or any affiliated organization(s).Nor have these
opinions been approved or sanctioned by these organizations. This e-mail is
unclassified based on the definitions in E.O. 12958.

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:56 AM
To: CF-Talk
Subject: re: Can this be done??

Hi,

I have a frame split in half (topframe  bottomframe).

I the top frame I'm listing directories/files which have links to them.
Beside each directory/file is an image that when clicked I want to send the
link information to the bottom frame asthe path.
Each time a link is clicked the bottom frame would get updated with a new
entry.

For example (+ is directory, - is files):

Top frame listing
-

Directory Listing:

+ changes
+ delivery
+ late
+ schedule
- data.txt
- test.txt
- mywork.txt

So if a user click on a the directory changes link the file path and name
are passed to the bottom frame. user then click on the directory late and
then filename test.txt

Bottom frame:
-

changes
late
test.txt

How could this be done?


_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Can this be done??

2003-11-26 Thread Bushy
Do you know where I could find some examples?

--Original Message Text---
From: Heald, Tim
Date: Wed, 26 Nov 2003 08:56:10 -0500

_javascript_.

Timothy Heald 
Web Portfolio Manager 
Overseas Security Advisory Council 
U.S. Department of State 
571.345.2319 

The opinions expressed here do not necessarily reflect those of the U.S.
Department of State or any affiliated organization(s).Nor have these
opinions been approved or sanctioned by these organizations. This e-mail is
unclassified based on the definitions in E.O. 12958.

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:56 AM
To: CF-Talk
Subject: re: Can this be done??

Hi,

I have a frame split in half (topframe  bottomframe).

I the top frame I'm listing directories/files which have links to them.
Beside each directory/file is an image that when clicked I want to send the
link information to the bottom frame asthe path.
Each time a link is clicked the bottom frame would get updated with a new
entry.

For example (+ is directory, - is files):

Top frame listing
-

Directory Listing:

+ changes
+ delivery
+ late
+ schedule
- data.txt
- test.txt
- mywork.txt

So if a user click on a the directory changes link the file path and name
are passed to the bottom frame. user then click on the directory late and
then filename test.txt

Bottom frame:
-

changes
late
test.txt

How could this be done?

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Can this be done??

2003-11-26 Thread Heald, Tim
http://www.w3schools.com/js/js_frames.asp
http://www.w3schools.com/js/js_frames.asp 

Timothy Heald 
Web Portfolio Manager 
Overseas Security Advisory Council 
U.S. Department of State 
571.345.2319 

The opinions expressed here do not necessarily reflect those of the U.S.
Department of State or any affiliated organization(s).Nor have these
opinions been approved or sanctioned by these organizations. This e-mail is
unclassified based on the definitions in E.O. 12958.

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 9:04 AM
To: CF-Talk
Subject: RE: Can this be done??

Do you know where I could find some examples?

--Original Message Text---
From: Heald, Tim
Date: Wed, 26 Nov 2003 08:56:10 -0500

_javascript_.

Timothy Heald 
Web Portfolio Manager 
Overseas Security Advisory Council 
U.S. Department of State 
571.345.2319 

The opinions expressed here do not necessarily reflect those of the U.S.
Department of State or any affiliated organization(s).Nor have these
opinions been approved or sanctioned by these organizations. This e-mail is
unclassified based on the definitions in E.O. 12958.

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:56 AM
To: CF-Talk
Subject: re: Can this be done??

Hi,

I have a frame split in half (topframe  bottomframe).

I the top frame I'm listing directories/files which have links to them.
Beside each directory/file is an image that when clicked I want to send the
link information to the bottom frame asthe path.
Each time a link is clicked the bottom frame would get updated with a new
entry.

For example (+ is directory, - is files):

Top frame listing
-

Directory Listing:

+ changes
+ delivery
+ late
+ schedule
- data.txt
- test.txt
- mywork.txt

So if a user click on a the directory changes link the file path and name
are passed to the bottom frame. user then click on the directory late and
then filename test.txt

Bottom frame:
-

changes
late
test.txt

How could this be done?

_

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Can this be done??

2003-11-26 Thread d.a.collie
http://developer.irt.org/script/script.htm... the _javascript_
FAQ's learned most of my js there many moons ago...don't know how
up to date it is but certainly give you examples of things that you
could use to achieve what you want

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: 26 November 2003 14:02
To: CF-Talk
Subject: RE: Can this be done??

Do you know where I could find some examples?

--Original Message Text---
From: Heald, Tim
Date: Wed, 26 Nov 2003 08:56:10 -0500

_javascript_.

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:56 AM
To: CF-Talk
Subject: re: Can this be done??

Hi,

I have a frame split in half (topframe  bottomframe).

I the top frame I'm listing directories/files which have links to them.
Beside each directory/file is an image that when clicked I want to send
the link information to the bottom frame asthe path. Each time a link
is clicked the bottom frame would get updated with a new entry.

For example (+ is directory, - is files):

Top frame listing
-

Directory Listing:

+ changes
+ delivery
+ late
+ schedule
- data.txt
- test.txt
- mywork.txt

So if a user click on a the directory changes link the file path and
name are passed to the bottom frame. user then click on the directory
late and then filename test.txt

Bottom frame:
-

changes
late
test.txt

How could this be done?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread Kevin Graeme
Actually, depending on how he's doing things _javascript_ might not be
feasible. If the file/folder listing view is a ftp window in the frame, then
he probably won't be able to use _javascript_.

If it's a cf/html listing of files, then it's easy and doesn't even really
need _javascript_. Just use the target attribute in the a href for each link
and point it to the other frame.

-Kevin

- Original Message - 
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:13 AM
Subject: RE: Can this be done??

 http://developer.irt.org/script/script.htm... the _javascript_
 FAQ's learned most of my js there many moons ago...don't know how
 up to date it is but certainly give you examples of things that you
 could use to achieve what you want


 -Original Message-
 From: Bushy [mailto:[EMAIL PROTECTED]
 Sent: 26 November 2003 14:02
 To: CF-Talk
 Subject: RE: Can this be done??


 Do you know where I could find some examples?

 --Original Message Text---
 From: Heald, Tim
 Date: Wed, 26 Nov 2003 08:56:10 -0500

 _javascript_.



 -Original Message-
 From: Bushy [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:56 AM
 To: CF-Talk
 Subject: re: Can this be done??

 Hi,

 I have a frame split in half (topframe  bottomframe).

 I the top frame I'm listing directories/files which have links to them.
 Beside each directory/file is an image that when clicked I want to send
 the link information to the bottom frame asthe path. Each time a link
 is clicked the bottom frame would get updated with a new entry.

 For example (+ is directory, - is files):

 Top frame listing
 -

 Directory Listing:

 + changes
 + delivery
 + late
 + schedule
 - data.txt
 - test.txt
 - mywork.txt

 So if a user click on a the directory changes link the file path and
 name are passed to the bottom frame. user then click on the directory
 late and then filename test.txt

 Bottom frame:
 -

 changes
 late
 test.txt

 How could this be done?
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread Bushy
--Original Message Text---
From: Kevin Graeme
Date: Wed, 26 Nov 2003 08:20:45 -0600

Actually, depending on how he's doing things _javascript_ might not be
feasible. If the file/folder listing view is a ftp window in the frame, then
he probably won't be able to use _javascript_.

The directory/file listing is created using CFFTP.

If it's a cf/html listing of files, then it's easy and doesn't even really
need _javascript_. Just use the target attribute in the a href for each link
and point it to the other frame.

OK...but how can I concatenate the listings?

-Kevin

- Original Message - 
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:13 AM
Subject: RE: Can this be done??

 http://developer.irt.org/script/script.htm... the _javascript_
 FAQ's learned most of my js there many moons ago...don't know how
 up to date it is but certainly give you examples of things that you
 could use to achieve what you want


 -Original Message-
 From: Bushy [mailto:[EMAIL PROTECTED]
 Sent: 26 November 2003 14:02
 To: CF-Talk
 Subject: RE: Can this be done??


 Do you know where I could find some examples?

 --Original Message Text---
 From: Heald, Tim
 Date: Wed, 26 Nov 2003 08:56:10 -0500

 _javascript_.



 -Original Message-
 From: Bushy [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:56 AM
 To: CF-Talk
 Subject: re: Can this be done??

 Hi,

 I have a frame split in half (topframe  bottomframe).

 I the top frame I'm listing directories/files which have links to them.
 Beside each directory/file is an image that when clicked I want to send
 the link information to the bottom frame asthe path. Each time a link
 is clicked the bottom frame would get updated with a new entry.

 For example (+ is directory, - is files):

 Top frame listing
 -

 Directory Listing:

 + changes
 + delivery
 + late
 + schedule
 - data.txt
 - test.txt
 - mywork.txt

 So if a user click on a the directory changes link the file path and
 name are passed to the bottom frame. user then click on the directory
 late and then filename test.txt

 Bottom frame:
 -

 changes
 late
 test.txt

 How could this be done?
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Can this be done??

2003-11-26 Thread Bushy
Hi,

I have an example working from http://developer.irt.org/script/11.htm

When I click on a directory or filename link the results gets passed to the bottom frame. The problem I have is every link that a user clicks on I want it to concatenate each directory/file to the 
listing. Currently it only display each link cliked.

How can I do this? Help!

--Original Message Text---
From: [EMAIL PROTECTED]
Date: Wed, 26 Nov 2003 14:13:15 -

http://developer.irt.org/script/script.htm... the _javascript_
FAQ's learned most of my js there many moons ago...don't know how
up to date it is but certainly give you examples of things that you
could use to achieve what you want

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: 26 November 2003 14:02
To: CF-Talk
Subject: RE: Can this be done??

Do you know where I could find some examples?

--Original Message Text---
From: Heald, Tim
Date: Wed, 26 Nov 2003 08:56:10 -0500

_javascript_.

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:56 AM
To: CF-Talk
Subject: re: Can this be done??

Hi,

I have a frame split in half (topframe  bottomframe).

I the top frame I'm listing directories/files which have links to them.
Beside each directory/file is an image that when clicked I want to send
the link information to the bottom frame asthe path. Each time a link
is clicked the bottom frame would get updated with a new entry.

For example (+ is directory, - is files):

Top frame listing
-

Directory Listing:

+ changes
+ delivery
+ late
+ schedule
- data.txt
- test.txt
- mywork.txt

So if a user click on a the directory changes link the file path and
name are passed to the bottom frame. user then click on the directory
late and then filename test.txt

Bottom frame:
-

changes
late
test.txt

How could this be done? 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread Kevin Graeme
Ah, maybe I misunderstood what you were trying to do. That still sounds
pretty basic and still may not need _javascript_.

One way that you might do it is in the top frame, each link goes to the same
page in the bottom frame and just passes the link information as a url
variable. So pass from the top frame something like:
a href="" target=bottomFramechanges/a

Then on the bottom frame, just grab the url.item variable passed to it, add
it to a list or array or whatever you need of url variables that you've
passed, probably storing them in the session scope. Then output whatever is
in that list.

-Kevin

- Original Message - 
From: Bushy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:25 AM
Subject: Re: Can this be done??

 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:20:45 -0600

 Actually, depending on how he's doing things _javascript_ might not be
 feasible. If the file/folder listing view is a ftp window in the frame,
then
 he probably won't be able to use _javascript_.

 The directory/file listing is created using CFFTP.

 If it's a cf/html listing of files, then it's easy and doesn't even really
 need _javascript_. Just use the target attribute in the a href for each
link
 and point it to the other frame.

 OK...but how can I concatenate the listings?

 -Kevin

 - Original Message - 
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:13 AM
 Subject: RE: Can this be done??

  http://developer.irt.org/script/script.htm... the _javascript_
  FAQ's learned most of my js there many moons ago...don't know how
  up to date it is but certainly give you examples of things that you
  could use to achieve what you want
 
 
  -Original Message-
  From: Bushy [mailto:[EMAIL PROTECTED]
  Sent: 26 November 2003 14:02
  To: CF-Talk
  Subject: RE: Can this be done??
 
 
  Do you know where I could find some examples?
 
  --Original Message Text---
  From: Heald, Tim
  Date: Wed, 26 Nov 2003 08:56:10 -0500
 
  _javascript_.
 
 
 
  -Original Message-
  From: Bushy [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:56 AM
  To: CF-Talk
  Subject: re: Can this be done??
 
  Hi,
 
  I have a frame split in half (topframe  bottomframe).
 
  I the top frame I'm listing directories/files which have links to them.
  Beside each directory/file is an image that when clicked I want to send
  the link information to the bottom frame asthe path. Each time a link
  is clicked the bottom frame would get updated with a new entry.
 
  For example (+ is directory, - is files):
 
  Top frame listing
  -
 
  Directory Listing:
 
  + changes
  + delivery
  + late
  + schedule
  - data.txt
  - test.txt
  - mywork.txt
 
  So if a user click on a the directory changes link the file path and
  name are passed to the bottom frame. user then click on the directory
  late and then filename test.txt
 
  Bottom frame:
  -
 
  changes
  late
  test.txt
 
  How could this be done?
 
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread Bushy
Cool.

I got it to work using the URL variable.

How can I keep adding or concatenate each selection to the URL.item variable I'm displaying in the bottomframe to a list or array?



--Original Message Text---
From: Kevin Graeme
Date: Wed, 26 Nov 2003 08:56:40 -0600

Ah, maybe I misunderstood what you were trying to do. That still sounds
pretty basic and still may not need _javascript_.

One way that you might do it is in the top frame, each link goes to the same
page in the bottom frame and just passes the link information as a url
variable. So pass from the top frame something like:
a href="" target=bottomFramechanges/a

Then on the bottom frame, just grab the url.item variable passed to it, add
it to a list or array or whatever you need of url variables that you've
passed, probably storing them in the session scope. Then output whatever is
in that list.

-Kevin

- Original Message - 
From: Bushy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:25 AM
Subject: Re: Can this be done??

 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:20:45 -0600

 Actually, depending on how he's doing things _javascript_ might not be
 feasible. If the file/folder listing view is a ftp window in the frame,
then
 he probably won't be able to use _javascript_.

 The directory/file listing is created using CFFTP.

 If it's a cf/html listing of files, then it's easy and doesn't even really
 need _javascript_. Just use the target attribute in the a href for each
link
 and point it to the other frame.

 OK...but how can I concatenate the listings?

 -Kevin

 - Original Message - 
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:13 AM
 Subject: RE: Can this be done??

  http://developer.irt.org/script/script.htm... the _javascript_
  FAQ's learned most of my js there many moons ago...don't know how
  up to date it is but certainly give you examples of things that you
  could use to achieve what you want
 
 
  -Original Message-
  From: Bushy [mailto:[EMAIL PROTECTED]
  Sent: 26 November 2003 14:02
  To: CF-Talk
  Subject: RE: Can this be done??
 
 
  Do you know where I could find some examples?
 
  --Original Message Text---
  From: Heald, Tim
  Date: Wed, 26 Nov 2003 08:56:10 -0500
 
  _javascript_.
 
 
 
  -Original Message-
  From: Bushy [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:56 AM
  To: CF-Talk
  Subject: re: Can this be done??
 
  Hi,
 
  I have a frame split in half (topframe  bottomframe).
 
  I the top frame I'm listing directories/files which have links to them.
  Beside each directory/file is an image that when clicked I want to send
  the link information to the bottom frame asthe path. Each time a link
  is clicked the bottom frame would get updated with a new entry.
 
  For example (+ is directory, - is files):
 
  Top frame listing
  -
 
  Directory Listing:
 
  + changes
  + delivery
  + late
  + schedule
  - data.txt
  - test.txt
  - mywork.txt
 
  So if a user click on a the directory changes link the file path and
  name are passed to the bottom frame. user then click on the directory
  late and then filename test.txt
 
  Bottom frame:
  -
 
  changes
  late
  test.txt
 
  How could this be done?
 
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread Kevin Graeme
Did you even try looking up how to use a list or array and figure it out for
yourself?

Here's a lead:
_ColdFusion MX Web Application Construction Kit_ by Ben Forta, page 170.

-Kevin

- Original Message - 
From: Bushy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 9:12 AM
Subject: Re: Can this be done??

 Cool.

 I got it to work using the URL variable.

 How can I keep adding or concatenate each selection to the URL.item
variable I'm displaying in the bottomframe to a list or array?





 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:56:40 -0600

 Ah, maybe I misunderstood what you were trying to do. That still sounds
 pretty basic and still may not need _javascript_.

 One way that you might do it is in the top frame, each link goes to the
same
 page in the bottom frame and just passes the link information as a url
 variable. So pass from the top frame something like:
 a href="" target=bottomFramechanges/a

 Then on the bottom frame, just grab the url.item variable passed to it,
add
 it to a list or array or whatever you need of url variables that you've
 passed, probably storing them in the session scope. Then output whatever
is
 in that list.

 -Kevin

 - Original Message - 
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:25 AM
 Subject: Re: Can this be done??

  --Original Message Text---
  From: Kevin Graeme
  Date: Wed, 26 Nov 2003 08:20:45 -0600
 
  Actually, depending on how he's doing things _javascript_ might not be
  feasible. If the file/folder listing view is a ftp window in the frame,
 then
  he probably won't be able to use _javascript_.
 
  The directory/file listing is created using CFFTP.
 
  If it's a cf/html listing of files, then it's easy and doesn't even
really
  need _javascript_. Just use the target attribute in the a href for each
 link
  and point it to the other frame.
 
  OK...but how can I concatenate the listings?
 
  -Kevin
 
  - Original Message - 
  From: [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:13 AM
  Subject: RE: Can this be done??
 
   http://developer.irt.org/script/script.htm... the _javascript_
   FAQ's learned most of my js there many moons ago...don't know
how
   up to date it is but certainly give you examples of things that you
   could use to achieve what you want
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: 26 November 2003 14:02
   To: CF-Talk
   Subject: RE: Can this be done??
  
  
   Do you know where I could find some examples?
  
   --Original Message Text---
   From: Heald, Tim
   Date: Wed, 26 Nov 2003 08:56:10 -0500
  
   _javascript_.
  
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, November 26, 2003 8:56 AM
   To: CF-Talk
   Subject: re: Can this be done??
  
   Hi,
  
   I have a frame split in half (topframe  bottomframe).
  
   I the top frame I'm listing directories/files which have links to
them.
   Beside each directory/file is an image that when clicked I want to
send
   the link information to the bottom frame asthe path. Each time a
link
   is clicked the bottom frame would get updated with a new entry.
  
   For example (+ is directory, - is files):
  
   Top frame listing
   -
  
   Directory Listing:
  
   + changes
   + delivery
   + late
   + schedule
   - data.txt
   - test.txt
   - mywork.txt
  
   So if a user click on a the directory changes link the file path and
   name are passed to the bottom frame. user then click on the directory
   late and then filename test.txt
  
   Bottom frame:
   -
  
   changes
   late
   test.txt
  
   How could this be done?
  
 
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Can this be done??

2003-11-26 Thread Heald, Tim
You could store the info in a session variable and then append the new value
to it.

Timothy Heald 
Web Portfolio Manager 
Overseas Security Advisory Council 
U.S. Department of State 
571.345.2319 

The opinions expressed here do not necessarily reflect those of the U.S.
Department of State or any affiliated organization(s).Nor have these
opinions been approved or sanctioned by these organizations. This e-mail is
unclassified based on the definitions in E.O. 12958.

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 10:21 AM
To: CF-Talk
Subject: Re: Can this be done??

Cool.

I got it to work using the URL variable.

How can I keep adding or concatenate each selection to the URL.item variable
I'm displaying in the bottomframe to a list or array?

--Original Message Text---
From: Kevin Graeme
Date: Wed, 26 Nov 2003 08:56:40 -0600

Ah, maybe I misunderstood what you were trying to do. That still sounds
pretty basic and still may not need _javascript_.

One way that you might do it is in the top frame, each link goes to the same
page in the bottom frame and just passes the link information as a url
variable. So pass from the top frame something like:
a href="" target=bottomFramechanges/a

Then on the bottom frame, just grab the url.item variable passed to it, add
it to a list or array or whatever you need of url variables that you've
passed, probably storing them in the session scope. Then output whatever is
in that list.

-Kevin

- Original Message - 
From: Bushy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 8:25 AM
Subject: Re: Can this be done??

 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:20:45 -0600

 Actually, depending on how he's doing things _javascript_ might not be
 feasible. If the file/folder listing view is a ftp window in the frame,
then
 he probably won't be able to use _javascript_.

 The directory/file listing is created using CFFTP.

 If it's a cf/html listing of files, then it's easy and doesn't even really
 need _javascript_. Just use the target attribute in the a href for each
link
 and point it to the other frame.

 OK...but how can I concatenate the listings?

 -Kevin

 - Original Message - 
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:13 AM
 Subject: RE: Can this be done??

  http://developer.irt.org/script/script.htm
http://developer.irt.org/script/script.htm ... the _javascript_
  FAQ's learned most of my js there many moons ago...don't know how
  up to date it is but certainly give you examples of things that you
  could use to achieve what you want
 
 
  -Original Message-
  From: Bushy [mailto:[EMAIL PROTECTED]
  Sent: 26 November 2003 14:02
  To: CF-Talk
  Subject: RE: Can this be done??
 
 
  Do you know where I could find some examples?
 
  --Original Message Text---
  From: Heald, Tim
  Date: Wed, 26 Nov 2003 08:56:10 -0500
 
  _javascript_.
 
 
 
  -Original Message-
  From: Bushy [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:56 AM
  To: CF-Talk
  Subject: re: Can this be done??
 
  Hi,
 
  I have a frame split in half (topframe  bottomframe).
 
  I the top frame I'm listing directories/files which have links to them.
  Beside each directory/file is an image that when clicked I want to send
  the link information to the bottom frame asthe path. Each time a link
  is clicked the bottom frame would get updated with a new entry.
 
  For example (+ is directory, - is files):
 
  Top frame listing
  -
 
  Directory Listing:
 
  + changes
  + delivery
  + late
  + schedule
  - data.txt
  - test.txt
  - mywork.txt
 
  So if a user click on a the directory changes link the file path and
  name are passed to the bottom frame. user then click on the directory
  late and then filename test.txt
 
  Bottom frame:
  -
 
  changes
  late
  test.txt
 
  How could this be done?
 
 
_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Can this be done??

2003-11-26 Thread Heald, Tim
I was actually wondering the same thing.

Timothy Heald 
Web Portfolio Manager 
Overseas Security Advisory Council 
U.S. Department of State 
571.345.2319 

The opinions expressed here do not necessarily reflect those of the U.S.
Department of State or any affiliated organization(s).Nor have these
opinions been approved or sanctioned by these organizations. This e-mail is
unclassified based on the definitions in E.O. 12958.

-Original Message-
From: Kevin Graeme [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 10:36 AM
To: CF-Talk
Subject: Re: Can this be done??

Did you even try looking up how to use a list or array and figure it out for
yourself?

Here's a lead:
_ColdFusion MX Web Application Construction Kit_ by Ben Forta, page 170.

-Kevin

- Original Message - 
From: Bushy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 9:12 AM
Subject: Re: Can this be done??

 Cool.

 I got it to work using the URL variable.

 How can I keep adding or concatenate each selection to the URL.item
variable I'm displaying in the bottomframe to a list or array?





 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:56:40 -0600

 Ah, maybe I misunderstood what you were trying to do. That still sounds
 pretty basic and still may not need _javascript_.

 One way that you might do it is in the top frame, each link goes to the
same
 page in the bottom frame and just passes the link information as a url
 variable. So pass from the top frame something like:
 a href="" target=bottomFramechanges/a

 Then on the bottom frame, just grab the url.item variable passed to it,
add
 it to a list or array or whatever you need of url variables that you've
 passed, probably storing them in the session scope. Then output whatever
is
 in that list.

 -Kevin

 - Original Message - 
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:25 AM
 Subject: Re: Can this be done??

  --Original Message Text---
  From: Kevin Graeme
  Date: Wed, 26 Nov 2003 08:20:45 -0600
 
  Actually, depending on how he's doing things _javascript_ might not be
  feasible. If the file/folder listing view is a ftp window in the frame,
 then
  he probably won't be able to use _javascript_.
 
  The directory/file listing is created using CFFTP.
 
  If it's a cf/html listing of files, then it's easy and doesn't even
really
  need _javascript_. Just use the target attribute in the a href for each
 link
  and point it to the other frame.
 
  OK...but how can I concatenate the listings?
 
  -Kevin
 
  - Original Message - 
  From: [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:13 AM
  Subject: RE: Can this be done??
 
   http://developer.irt.org/script/script.htm
http://developer.irt.org/script/script.htm ... the _javascript_
   FAQ's learned most of my js there many moons ago...don't know
how
   up to date it is but certainly give you examples of things that you
   could use to achieve what you want
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: 26 November 2003 14:02
   To: CF-Talk
   Subject: RE: Can this be done??
  
  
   Do you know where I could find some examples?
  
   --Original Message Text---
   From: Heald, Tim
   Date: Wed, 26 Nov 2003 08:56:10 -0500
  
   _javascript_.
  
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, November 26, 2003 8:56 AM
   To: CF-Talk
   Subject: re: Can this be done??
  
   Hi,
  
   I have a frame split in half (topframe  bottomframe).
  
   I the top frame I'm listing directories/files which have links to
them.
   Beside each directory/file is an image that when clicked I want to
send
   the link information to the bottom frame asthe path. Each time a
link
   is clicked the bottom frame would get updated with a new entry.
  
   For example (+ is directory, - is files):
  
   Top frame listing
   -
  
   Directory Listing:
  
   + changes
   + delivery
   + late
   + schedule
   - data.txt
   - test.txt
   - mywork.txt
  
   So if a user click on a the directory changes link the file path and
   name are passed to the bottom frame. user then click on the directory
   late and then filename test.txt
  
   Bottom frame:
   -
  
   changes
   late
   test.txt
  
   How could this be done?
  
 
 
_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread Bushy
Nope.

--Original Message Text---
From: Kevin Graeme
Date: Wed, 26 Nov 2003 09:24:36 -0600

Did you even try looking up how to use a list or array and figure it out for
yourself?

Here's a lead:
_ColdFusion MX Web Application Construction Kit_ by Ben Forta, page 170.

-Kevin

- Original Message - 
From: Bushy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 9:12 AM
Subject: Re: Can this be done??

 Cool.

 I got it to work using the URL variable.

 How can I keep adding or concatenate each selection to the URL.item
variable I'm displaying in the bottomframe to a list or array?





 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:56:40 -0600

 Ah, maybe I misunderstood what you were trying to do. That still sounds
 pretty basic and still may not need _javascript_.

 One way that you might do it is in the top frame, each link goes to the
same
 page in the bottom frame and just passes the link information as a url
 variable. So pass from the top frame something like:
 a href="" target=bottomFramechanges/a

 Then on the bottom frame, just grab the url.item variable passed to it,
add
 it to a list or array or whatever you need of url variables that you've
 passed, probably storing them in the session scope. Then output whatever
is
 in that list.

 -Kevin

 - Original Message - 
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:25 AM
 Subject: Re: Can this be done??

  --Original Message Text---
  From: Kevin Graeme
  Date: Wed, 26 Nov 2003 08:20:45 -0600
 
  Actually, depending on how he's doing things _javascript_ might not be
  feasible. If the file/folder listing view is a ftp window in the frame,
 then
  he probably won't be able to use _javascript_.
 
  The directory/file listing is created using CFFTP.
 
  If it's a cf/html listing of files, then it's easy and doesn't even
really
  need _javascript_. Just use the target attribute in the a href for each
 link
  and point it to the other frame.
 
  OK...but how can I concatenate the listings?
 
  -Kevin
 
  - Original Message - 
  From: [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:13 AM
  Subject: RE: Can this be done??
 
   http://developer.irt.org/script/script.htm... the _javascript_
   FAQ's learned most of my js there many moons ago...don't know
how
   up to date it is but certainly give you examples of things that you
   could use to achieve what you want
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: 26 November 2003 14:02
   To: CF-Talk
   Subject: RE: Can this be done??
  
  
   Do you know where I could find some examples?
  
   --Original Message Text---
   From: Heald, Tim
   Date: Wed, 26 Nov 2003 08:56:10 -0500
  
   _javascript_.
  
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, November 26, 2003 8:56 AM
   To: CF-Talk
   Subject: re: Can this be done??
  
   Hi,
  
   I have a frame split in half (topframe  bottomframe).
  
   I the top frame I'm listing directories/files which have links to
them.
   Beside each directory/file is an image that when clicked I want to
send
   the link information to the bottom frame asthe path. Each time a
link
   is clicked the bottom frame would get updated with a new entry.
  
   For example (+ is directory, - is files):
  
   Top frame listing
   -
  
   Directory Listing:
  
   + changes
   + delivery
   + late
   + schedule
   - data.txt
   - test.txt
   - mywork.txt
  
   So if a user click on a the directory changes link the file path and
   name are passed to the bottom frame. user then click on the directory
   late and then filename test.txt
  
   Bottom frame:
   -
  
   changes
   late
   test.txt
  
   How could this be done?
  
 
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread Charlie Griefer
nice.

- Original Message - 
From: Bushy 
To: CF-Talk 
Sent: Wednesday, November 26, 2003 8:40 AM
Subject: Re: Can this be done??

Nope.

--Original Message Text---
From: Kevin Graeme
Date: Wed, 26 Nov 2003 09:24:36 -0600

Did you even try looking up how to use a list or array and figure it out for
yourself?

Here's a lead:
_ColdFusion MX Web Application Construction Kit_ by Ben Forta, page 170.

-Kevin

- Original Message - 
From: Bushy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 9:12 AM
Subject: Re: Can this be done??

 Cool.

 I got it to work using the URL variable.

 How can I keep adding or concatenate each selection to the URL.item
variable I'm displaying in the bottomframe to a list or array?





 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:56:40 -0600

 Ah, maybe I misunderstood what you were trying to do. That still sounds
 pretty basic and still may not need _javascript_.

 One way that you might do it is in the top frame, each link goes to the
same
 page in the bottom frame and just passes the link information as a url
 variable. So pass from the top frame something like:
 a href="" target=bottomFramechanges/a

 Then on the bottom frame, just grab the url.item variable passed to it,
add
 it to a list or array or whatever you need of url variables that you've
 passed, probably storing them in the session scope. Then output whatever
is
 in that list.

 -Kevin

 - Original Message - 
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:25 AM
 Subject: Re: Can this be done??

  --Original Message Text---
  From: Kevin Graeme
  Date: Wed, 26 Nov 2003 08:20:45 -0600
 
  Actually, depending on how he's doing things _javascript_ might not be
  feasible. If the file/folder listing view is a ftp window in the frame,
 then
  he probably won't be able to use _javascript_.
 
  The directory/file listing is created using CFFTP.
 
  If it's a cf/html listing of files, then it's easy and doesn't even
really
  need _javascript_. Just use the target attribute in the a href for each
 link
  and point it to the other frame.
 
  OK...but how can I concatenate the listings?
 
  -Kevin
 
  - Original Message - 
  From: [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:13 AM
  Subject: RE: Can this be done??
 
   http://developer.irt.org/script/script.htm... the _javascript_
   FAQ's learned most of my js there many moons ago...don't know
how
   up to date it is but certainly give you examples of things that you
   could use to achieve what you want
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: 26 November 2003 14:02
   To: CF-Talk
   Subject: RE: Can this be done??
  
  
   Do you know where I could find some examples?
  
   --Original Message Text---
   From: Heald, Tim
   Date: Wed, 26 Nov 2003 08:56:10 -0500
  
   _javascript_.
  
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, November 26, 2003 8:56 AM
   To: CF-Talk
   Subject: re: Can this be done??
  
   Hi,
  
   I have a frame split in half (topframe  bottomframe).
  
   I the top frame I'm listing directories/files which have links to
them.
   Beside each directory/file is an image that when clicked I want to
send
   the link information to the bottom frame asthe path. Each time a
link
   is clicked the bottom frame would get updated with a new entry.
  
   For example (+ is directory, - is files):
  
   Top frame listing
   -
  
   Directory Listing:
  
   + changes
   + delivery
   + late
   + schedule
   - data.txt
   - test.txt
   - mywork.txt
  
   So if a user click on a the directory changes link the file path and
   name are passed to the bottom frame. user then click on the directory
   late and then filename test.txt
  
   Bottom frame:
   -
  
   changes
   late
   test.txt
  
   How could this be done?
  
 
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread Bushy
I've flipped through ColdFusion MX Web Application Construction Kit_ by Ben Forta, page 170. and this is just too deep for me.

I've tried using cfset itemlist - listappend(itemlist,URL.DIR) without any success?

When a link is clicked a href="" target=bottomframe

I'm passing the results to the bottom frame which works fine.

I put the cfset into the bottom.cfm file. When I click on another link the ITEMLIST does not get appended. Am I using the correct CF code?

What am I doing wrong?

--Original Message Text---
From: Bushy
Date: Wed, 26 Nov 2003 10:40:11 -0500

Nope.

--Original Message Text---
From: Kevin Graeme
Date: Wed, 26 Nov 2003 09:24:36 -0600

Did you even try looking up how to use a list or array and figure it out for
yourself?

Here's a lead:
_ColdFusion MX Web Application Construction Kit_ by Ben Forta, page 170.

-Kevin

- Original Message - 
From: Bushy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 9:12 AM
Subject: Re: Can this be done??

 Cool.

 I got it to work using the URL variable.

 How can I keep adding or concatenate each selection to the URL.item
variable I'm displaying in the bottomframe to a list or array?





 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:56:40 -0600

 Ah, maybe I misunderstood what you were trying to do. That still sounds
 pretty basic and still may not need _javascript_.

 One way that you might do it is in the top frame, each link goes to the
same
 page in the bottom frame and just passes the link information as a url
 variable. So pass from the top frame something like:
 a href="" target=bottomFramechanges/a

 Then on the bottom frame, just grab the url.item variable passed to it,
add
 it to a list or array or whatever you need of url variables that you've
 passed, probably storing them in the session scope. Then output whatever
is
 in that list.

 -Kevin

 - Original Message - 
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:25 AM
 Subject: Re: Can this be done??

  --Original Message Text---
  From: Kevin Graeme
  Date: Wed, 26 Nov 2003 08:20:45 -0600
 
  Actually, depending on how he's doing things _javascript_ might not be
  feasible. If the file/folder listing view is a ftp window in the frame,
 then
  he probably won't be able to use _javascript_.
 
  The directory/file listing is created using CFFTP.
 
  If it's a cf/html listing of files, then it's easy and doesn't even
really
  need _javascript_. Just use the target attribute in the a href for each
 link
  and point it to the other frame.
 
  OK...but how can I concatenate the listings?
 
  -Kevin
 
  - Original Message - 
  From: [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:13 AM
  Subject: RE: Can this be done??
 
   http://developer.irt.org/script/script.htm ... the _javascript_
   FAQ's learned most of my js there many moons ago... don't know
how
   up to date it is but certainly give you examples of things that you
   could use to achieve what you want
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: 26 November 2003 14:02
   To: CF-Talk
   Subject: RE: Can this be done??
  
  
   Do you know where I could find some examples?
  
   --Original Message Text---
   From: Heald, Tim
   Date: Wed, 26 Nov 2003 08:56:10 -0500
  
   _javascript_.
  
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, November 26, 2003 8:56 AM
   To: CF-Talk
   Subject: re: Can this be done??
  
   Hi,
  
   I have a frame split in half (topframe  bottomframe).
  
   I the top frame I'm listing directories/files which have links to
them.
   Beside each directory/file is an image that when clicked I want to
send
   the link information to the bottom frame as the path. Each time a
link
   is clicked the bottom frame would get updated with a new entry.
  
   For example (+ is directory, - is files):
  
   Top frame listing
   -
  
   Directory Listing:
  
   + changes
   + delivery
   + late
   + schedule
   - data.txt
   - test.txt
   - mywork.txt
  
   So if a user click on a the directory changes link the file path and
   name are passed to the bottom frame. user then click on the directory
   late and then filename test.txt
  
   Bottom frame:
   -
  
   changes
   late
   test.txt
  
   How could this be done?
  
 
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread tom
cfset itemlist = listappend(itemlist,URL.DIR)

You had a typo on the equals sign.

Tom Nunamaker

 I've flipped through ColdFusion MX Web Application Construction Kit_ by
 Ben Forta, page 170. and this is just too deep for me.

 I've tried using cfset itemlist - listappend(itemlist,URL.DIR) without
 any success?

 When a link is clicked a href="">
 target=bottomframe

 I'm passing the results to the bottom frame which works fine.

 I put the cfset into the bottom.cfm file. When I click on another link
 the ITEMLIST does not get appended. Am I using the correct CF code?

 What am I doing wrong?


 --Original Message Text---
 From: Bushy
 Date: Wed, 26 Nov 2003 10:40:11 -0500


 Nope.

 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 09:24:36 -0600

 Did you even try looking up how to use a list or array and figure it out
 for yourself?

 Here's a lead:
 _ColdFusion MX Web Application Construction Kit_ by Ben Forta, page 170.

 -Kevin

 - Original Message -
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 9:12 AM
 Subject: Re: Can this be done??

 Cool.

 I got it to work using the URL variable.

 How can I keep adding or concatenate each selection to the URL.item
 variable I'm displaying in the bottomframe to a list or array?





 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:56:40 -0600

 Ah, maybe I misunderstood what you were trying to do. That still
 sounds pretty basic and still may not need _javascript_.

 One way that you might do it is in the top frame, each link goes to
 the
 same
 page in the bottom frame and just passes the link information as a url
 variable. So pass from the top frame something like:
 a href="">
 target=bottomFramechanges/a

 Then on the bottom frame, just grab the url.item variable passed to
 it,
 add
 it to a list or array or whatever you need of url variables that
 you've passed, probably storing them in the session scope. Then output
 whatever
 is
 in that list.

 -Kevin

 - Original Message -
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:25 AM
 Subject: Re: Can this be done??

  --Original Message Text---
  From: Kevin Graeme
  Date: Wed, 26 Nov 2003 08:20:45 -0600
 
  Actually, depending on how he's doing things _javascript_ might not be
 feasible. If the file/folder listing view is a ftp window in the
 frame,
 then
  he probably won't be able to use _javascript_.
 
  The directory/file listing is created using CFFTP.
 
  If it's a cf/html listing of files, then it's easy and doesn't even
 really
  need _javascript_. Just use the target attribute in the a href for
 each
 link
  and point it to the other frame.
 
  OK...but how can I concatenate the listings?
 
  -Kevin
 
  - Original Message -
  From: [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:13 AM
  Subject: RE: Can this be done??
 
   http://developer.irt.org/script/script.htm ... the _javascript_
 FAQ's learned most of my js there many moons ago... don't know
 how
   up to date it is but certainly give you examples of things that
 you could use to achieve what you want
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: 26 November 2003 14:02
   To: CF-Talk
   Subject: RE: Can this be done??
  
  
   Do you know where I could find some examples?
  
   --Original Message Text---
   From: Heald, Tim
   Date: Wed, 26 Nov 2003 08:56:10 -0500
  
   _javascript_.
  
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, November 26, 2003 8:56 AM
   To: CF-Talk
   Subject: re: Can this be done??
  
   Hi,
  
   I have a frame split in half (topframe  bottomframe).
  
   I the top frame I'm listing directories/files which have links to
 them.
   Beside each directory/file is an image that when clicked I want to
 send
   the link information to the bottom frame as the path. Each time a
 link
   is clicked the bottom frame would get updated with a new entry.
  
   For example (+ is directory, - is files):
  
   Top frame listing
   -
  
   Directory Listing:
  
   + changes
   + delivery
   + late
   + schedule
   - data.txt
   - test.txt
   - mywork.txt
  
   So if a user click on a the directory changes link the file path
 and name are passed to the bottom frame. user then click on the
 directory late and then filename test.txt
  
   Bottom frame:
   -
  
   changes
   late
   test.txt
  
   How could this be done?
  
 

 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Can this be done??

2003-11-26 Thread Bushy
That typo is OK in my code. I'm doing something else wrong.

--Original Message Text---
From: [EMAIL PROTECTED]
Date: Wed, 26 Nov 2003 13:07:46 -0500 (EST)

cfset itemlist = listappend(itemlist,URL.DIR)

You had a typo on the equals sign.

Tom Nunamaker

 I've flipped through ColdFusion MX Web Application Construction Kit_ by
 Ben Forta, page 170. and this is just too deep for me.

 I've tried using cfset itemlist - listappend(itemlist,URL.DIR) without
 any success?

 When a link is clicked a href="">
 target=bottomframe

 I'm passing the results to the bottom frame which works fine.

 I put the cfset into the bottom.cfm file. When I click on another link
 the ITEMLIST does not get appended. Am I using the correct CF code?

 What am I doing wrong?


 --Original Message Text---
 From: Bushy
 Date: Wed, 26 Nov 2003 10:40:11 -0500


 Nope.

 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 09:24:36 -0600

 Did you even try looking up how to use a list or array and figure it out
 for yourself?

 Here's a lead:
 _ColdFusion MX Web Application Construction Kit_ by Ben Forta, page 170.

 -Kevin

 - Original Message -
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 9:12 AM
 Subject: Re: Can this be done??

 Cool.

 I got it to work using the URL variable.

 How can I keep adding or concatenate each selection to the URL.item
 variable I'm displaying in the bottomframe to a list or array?





 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:56:40 -0600

 Ah, maybe I misunderstood what you were trying to do. That still
 sounds pretty basic and still may not need _javascript_.

 One way that you might do it is in the top frame, each link goes to
 the
 same
 page in the bottom frame and just passes the link information as a url
 variable. So pass from the top frame something like:
 a href="">
 target=bottomFramechanges/a

 Then on the bottom frame, just grab the url.item variable passed to
 it,
 add
 it to a list or array or whatever you need of url variables that
 you've passed, probably storing them in the session scope. Then output
 whatever
 is
 in that list.

 -Kevin

 - Original Message -
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:25 AM
 Subject: Re: Can this be done??

  --Original Message Text---
  From: Kevin Graeme
  Date: Wed, 26 Nov 2003 08:20:45 -0600
 
  Actually, depending on how he's doing things _javascript_ might not be
 feasible. If the file/folder listing view is a ftp window in the
 frame,
 then
  he probably won't be able to use _javascript_.
 
  The directory/file listing is created using CFFTP.
 
  If it's a cf/html listing of files, then it's easy and doesn't even
 really
  need _javascript_. Just use the target attribute in the a href for
 each
 link
  and point it to the other frame.
 
  OK...but how can I concatenate the listings?
 
  -Kevin
 
  - Original Message -
  From: [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:13 AM
  Subject: RE: Can this be done??
 
   http://developer.irt.org/script/script.htm ... the _javascript_
 FAQ's learned most of my js there many moons ago... don't know
 how
   up to date it is but certainly give you examples of things that
 you could use to achieve what you want
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: 26 November 2003 14:02
   To: CF-Talk
   Subject: RE: Can this be done??
  
  
   Do you know where I could find some examples?
  
   --Original Message Text---
   From: Heald, Tim
   Date: Wed, 26 Nov 2003 08:56:10 -0500
  
   _javascript_.
  
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, November 26, 2003 8:56 AM
   To: CF-Talk
   Subject: re: Can this be done??
  
   Hi,
  
   I have a frame split in half (topframe  bottomframe).
  
   I the top frame I'm listing directories/files which have links to
 them.
   Beside each directory/file is an image that when clicked I want to
 send
   the link information to the bottom frame as the path. Each time a
 link
   is clicked the bottom frame would get updated with a new entry.
  
   For example (+ is directory, - is files):
  
   Top frame listing
   -
  
   Directory Listing:
  
   + changes
   + delivery
   + late
   + schedule
   - data.txt
   - test.txt
   - mywork.txt
  
   So if a user click on a the directory changes link the file path
 and name are passed to the bottom frame. user then click on the
 directory late and then filename test.txt
  
   Bottom frame:
   -
  
   changes
   late
   test.txt
  
   How could this be done?
  
 

 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Can this be done??

2003-11-26 Thread Greg Luce
If I'm hearing you right you want to pass a value from the top frame
like:
a href="" target=_bottom_frameSomething/a

 
Then in your bottom.cfm you can have a persistant variable or maybe a
cookie that you can add the selected value to:
cfparam name=client.big_list default=
cfif isdefined('url.value')
 cfset client.big_list = listappend(client.big_list, url.value)
/cfif

 
Then you can loop over the list and display the items that you selected
in the top:
cfif listlen(client.big_list) GT 0
 cfloop index=i list=#client.big_list#
#i#br
 /cfloop
/cfif

 
Is that what you're after?

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 26, 2003 1:24 PM
To: CF-Talk
Subject: Re: Can this be done??

That typo is OK in my code. I'm doing something else wrong.

--Original Message Text---
From: [EMAIL PROTECTED]
Date: Wed, 26 Nov 2003 13:07:46 -0500 (EST)

cfset itemlist = listappend(itemlist,URL.DIR)

You had a typo on the equals sign.

Tom Nunamaker

 I've flipped through ColdFusion MX Web Application Construction Kit_
by
 Ben Forta, page 170. and this is just too deep for me.

 I've tried using cfset itemlist - listappend(itemlist,URL.DIR)
without
 any success?

 When a link is clicked a href="">
 target=bottomframe

 I'm passing the results to the bottom frame which works fine.

 I put the cfset into the bottom.cfm file. When I click on another
link
 the ITEMLIST does not get appended. Am I using the correct CF code?

 What am I doing wrong?


 --Original Message Text---
 From: Bushy
 Date: Wed, 26 Nov 2003 10:40:11 -0500


 Nope.

 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 09:24:36 -0600

 Did you even try looking up how to use a list or array and figure it
out
 for yourself?

 Here's a lead:
 _ColdFusion MX Web Application Construction Kit_ by Ben Forta, page
170.

 -Kevin

 - Original Message -
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 9:12 AM
 Subject: Re: Can this be done??

 Cool.

 I got it to work using the URL variable.

 How can I keep adding or concatenate each selection to the URL.item
 variable I'm displaying in the bottomframe to a list or array?





 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:56:40 -0600

 Ah, maybe I misunderstood what you were trying to do. That still
 sounds pretty basic and still may not need _javascript_.

 One way that you might do it is in the top frame, each link goes to
 the
 same
 page in the bottom frame and just passes the link information as a
url
 variable. So pass from the top frame something like:
 a href="">
 target=bottomFramechanges/a

 Then on the bottom frame, just grab the url.item variable passed to
 it,
 add
 it to a list or array or whatever you need of url variables that
 you've passed, probably storing them in the session scope. Then
output
 whatever
 is
 in that list.

 -Kevin

 - Original Message -
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:25 AM
 Subject: Re: Can this be done??

  --Original Message Text---
  From: Kevin Graeme
  Date: Wed, 26 Nov 2003 08:20:45 -0600
 
  Actually, depending on how he's doing things _javascript_ might not
be
 feasible. If the file/folder listing view is a ftp window in the
 frame,
 then
  he probably won't be able to use _javascript_.
 
  The directory/file listing is created using CFFTP.
 
  If it's a cf/html listing of files, then it's easy and doesn't even
 really
  need _javascript_. Just use the target attribute in the a href for
 each
 link
  and point it to the other frame.
 
  OK...but how can I concatenate the listings?
 
  -Kevin
 
  - Original Message -
  From: [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:13 AM
  Subject: RE: Can this be done??
 
   http://developer.irt.org/script/script.htm ... the _javascript_
 FAQ's learned most of my js there many moons ago... don't know
 how
   up to date it is but certainly give you examples of things that
 you could use to achieve what you want
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: 26 November 2003 14:02
   To: CF-Talk
   Subject: RE: Can this be done??
  
  
   Do you know where I could find some examples?
  
   --Original Message Text---
   From: Heald, Tim
   Date: Wed, 26 Nov 2003 08:56:10 -0500
  
   _javascript_.
  
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, November 26, 2003 8:56 AM
   To: CF-Talk
   Subject: re: Can this be done??
  
   Hi,
  
   I have a frame split in half (topframe  bottomframe).
  
   I the top frame I'm listing directories/files which have links to
 them.
   Beside each directory/file is an image that when clicked I want
to
 send
   the link information to the bottom frame as the path. Each time a
 link
   is clicke

RE: Can this be done??

2003-11-26 Thread Bushy
Exactly!

Work like a charm!

Mucho Grande!

--Original Message Text---
From: Greg Luce
Date: Wed, 26 Nov 2003 14:01:17 -0500

If I'm hearing you right you want to pass a value from the top frame
like:
a href="" target=_bottom_frameSomething/a

Then in your bottom.cfm you can have a persistant variable or maybe a
cookie that you can add the selected value to:
cfparam name=client.big_list default=
cfif isdefined('url.value')
 cfset client.big_list = listappend(client.big_list, url.value)
/cfif

Then you can loop over the list and display the items that you selected
in the top:
cfif listlen(client.big_list) GT 0
 cfloop index=i list=#client.big_list#
#i#br
 /cfloop
/cfif

Is that what you're after?

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 26, 2003 1:24 PM
To: CF-Talk
Subject: Re: Can this be done??

That typo is OK in my code. I'm doing something else wrong.

--Original Message Text---
From: [EMAIL PROTECTED]
Date: Wed, 26 Nov 2003 13:07:46 -0500 (EST)

cfset itemlist = listappend(itemlist,URL.DIR)

You had a typo on the equals sign.

Tom Nunamaker

 I've flipped through ColdFusion MX Web Application Construction Kit_
by
 Ben Forta, page 170. and this is just too deep for me.

 I've tried using cfset itemlist - listappend(itemlist,URL.DIR)
without
 any success?

 When a link is clicked a href="">
 target=bottomframe

 I'm passing the results to the bottom frame which works fine.

 I put the cfset into the bottom.cfm file. When I click on another
link
 the ITEMLIST does not get appended. Am I using the correct CF code?

 What am I doing wrong?


 --Original Message Text---
 From: Bushy
 Date: Wed, 26 Nov 2003 10:40:11 -0500


 Nope.

 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 09:24:36 -0600

 Did you even try looking up how to use a list or array and figure it
out
 for yourself?

 Here's a lead:
 _ColdFusion MX Web Application Construction Kit_ by Ben Forta, page
170.

 -Kevin

 - Original Message -
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 9:12 AM
 Subject: Re: Can this be done??

 Cool.

 I got it to work using the URL variable.

 How can I keep adding or concatenate each selection to the URL.item
 variable I'm displaying in the bottomframe to a list or array?





 --Original Message Text---
 From: Kevin Graeme
 Date: Wed, 26 Nov 2003 08:56:40 -0600

 Ah, maybe I misunderstood what you were trying to do. That still
 sounds pretty basic and still may not need _javascript_.

 One way that you might do it is in the top frame, each link goes to
 the
 same
 page in the bottom frame and just passes the link information as a
url
 variable. So pass from the top frame something like:
 a href="">
 target=bottomFramechanges/a

 Then on the bottom frame, just grab the url.item variable passed to
 it,
 add
 it to a list or array or whatever you need of url variables that
 you've passed, probably storing them in the session scope. Then
output
 whatever
 is
 in that list.

 -Kevin

 - Original Message -
 From: Bushy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:25 AM
 Subject: Re: Can this be done??

  --Original Message Text---
  From: Kevin Graeme
  Date: Wed, 26 Nov 2003 08:20:45 -0600
 
  Actually, depending on how he's doing things _javascript_ might not
be
 feasible. If the file/folder listing view is a ftp window in the
 frame,
 then
  he probably won't be able to use _javascript_.
 
  The directory/file listing is created using CFFTP.
 
  If it's a cf/html listing of files, then it's easy and doesn't even
 really
  need _javascript_. Just use the target attribute in the a href for
 each
 link
  and point it to the other frame.
 
  OK...but how can I concatenate the listings?
 
  -Kevin
 
  - Original Message -
  From: [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 8:13 AM
  Subject: RE: Can this be done??
 
   http://developer.irt.org/script/script.htm ... the _javascript_
 FAQ's learned most of my js there many moons ago... don't know
 how
   up to date it is but certainly give you examples of things that
 you could use to achieve what you want
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: 26 November 2003 14:02
   To: CF-Talk
   Subject: RE: Can this be done??
  
  
   Do you know where I could find some examples?
  
   --Original Message Text---
   From: Heald, Tim
   Date: Wed, 26 Nov 2003 08:56:10 -0500
  
   _javascript_.
  
  
  
   -Original Message-
   From: Bushy [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, November 26, 2003 8:56 AM
   To: CF-Talk
   Subject: re: Can this be done??
  
   Hi,
  
   I have a frame split in half (topframe  bottomframe).
  
   I the top frame I'm listing directories/files which have links to
 them.
   Beside each directory/file is an ima

How can it be done ?

2003-10-28 Thread Chris
Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a database with CFQUERY.
After logging in, a download is started, which will install additional software on the users computer.

Important is that the ID can be reused after the download, so I must find a way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that some have cookies out, other users are behind a firewall which will not allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
pass the ID in the url.

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 9:52 AM
To: CF-Talk
Subject: How can it be done ?

Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a database
with CFQUERY.
After logging in, a download is started, which will install additional
software on the users computer.

Important is that the ID can be reused after the download, so I must find a
way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that
some have cookies out, other users are behind a firewall which will not
allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany. 
_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
Good idea,

though after the installation, there is a reboot, page is gone.
- Original Message - 
From: Tangorre, Michael 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 3:50 PM
Subject: RE: How can it be done ?

pass the ID in the url.

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 9:52 AM
To: CF-Talk
Subject: How can it be done ?

Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a database
with CFQUERY.
After logging in, a download is started, which will install additional
software on the users computer.

Important is that the ID can be reused after the download, so I must find a
way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that
some have cookies out, other users are behind a firewall which will not
allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany. 
 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread d.a.collie
or use session vars and pass the cfid and cftoken (or jsessionid) in the
url and the user can't muck about with the userid

	-Original Message-
	From: Tangorre, Michael [mailto:[EMAIL PROTECTED] 
	Sent: 28 October 2003 14:51
	To: CF-Talk
	Subject: RE: How can it be done ?
	
	
	pass the ID in the url.
	
	-Original Message-
	From: Chris [mailto:[EMAIL PROTECTED] 
	Sent: Tuesday, October 28, 2003 9:52 AM
	To: CF-Talk
	Subject: How can it be done ?
	
	Good afternoon everyone,
	
	I have a small quetion, may be one of you skilled guys can help
me out.
	
	I have a login page, when the users logs in an ID is pulled from
a database
	with CFQUERY.
	After logging in, a download is started, which will install
additional
	software on the users computer.
	
	Important is that the ID can be reused after the download, so I
must find a
	way to remember that ID somewhere
	or pass it with the download.
	
	Cookies are out of the question.
	
	Users have complete control over their browser settings, and I
know that
	some have cookies out, other users are behind a firewall which
will not
	allow ActiveX.
	
	Anyone has any ideas ?
	
	Thanks,
	
	Chris
	Germany. 
	_
	
	
_

	
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread John Stanley
can you store the users ip address and associate it with the id?

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 9:56 AM
To: CF-Talk
Subject: Re: How can it be done ?

Good idea,

though after the installation, there is a reboot, page is gone.
- Original Message - 
From: Tangorre, Michael 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 3:50 PM
Subject: RE: How can it be done ?

pass the ID in the url.

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 9:52 AM
To: CF-Talk
Subject: How can it be done ?

Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a
database
with CFQUERY.
After logging in, a download is started, which will install additional
software on the users computer.

Important is that the ID can be reused after the download, so I must find
a
way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that
some have cookies out, other users are behind a firewall which will not
allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany. 
 _

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Bruce Sorge
So why not have them log in again and pass the ID in the URL string?

- Original Message - 
From: Chris 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 8:56 AM
Subject: Re: How can it be done ?

Good idea,

though after the installation, there is a reboot, page is gone.
 - Original Message - 
 From: Tangorre, Michael 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 3:50 PM
 Subject: RE: How can it be done ?

 pass the ID in the url.

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 28, 2003 9:52 AM
 To: CF-Talk
 Subject: How can it be done ?

 Good afternoon everyone,

 I have a small quetion, may be one of you skilled guys can help me out.

 I have a login page, when the users logs in an ID is pulled from a database
 with CFQUERY.
 After logging in, a download is started, which will install additional
 software on the users computer.

 Important is that the ID can be reused after the download, so I must find a
 way to remember that ID somewhere
 or pass it with the download.

 Cookies are out of the question.

 Users have complete control over their browser settings, and I know that
 some have cookies out, other users are behind a firewall which will not
 allow ActiveX.

 Anyone has any ideas ?

 Thanks,

 Chris
 Germany. 
_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Kennerly, Rick H CIV
HmmmI'm trying to imagine getting around the reboot.I'd think about
either storing the id in a new field in the login database or setting a
flag, depending on your design, that would be pulled down after the reboot
and re-log-in.

 
Rick

-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]
Sent: Tuesday, 28 October, 2003 10:59
To: CF-Talk
Subject: RE: How can it be done ?

can you store the users ip address and associate it with the id?

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 9:56 AM
To: CF-Talk
Subject: Re: How can it be done ?

Good idea,

though after the installation, there is a reboot, page is gone.
- Original Message - 
From: Tangorre, Michael 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 3:50 PM
Subject: RE: How can it be done ?

pass the ID in the url.

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 9:52 AM
To: CF-Talk
Subject: How can it be done ?

Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a
database
with CFQUERY.
After logging in, a download is started, which will install additional
software on the users computer.

Important is that the ID can be reused after the download, so I must find
a
way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that
some have cookies out, other users are behind a firewall which will not
allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany. 
 _

_

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
No such thing.

IP-address is out of the question as some users use dynamic IP.
Fact is that after the installation and reboot a html page is called in which the ID is filled out in a form.
So... I need to get that ID from somewhere on the client's computer.

- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 3:58 PM
Subject: RE: How can it be done ?

can you store the users ip address and associate it with the id?

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 9:56 AM
To: CF-Talk
Subject: Re: How can it be done ?

Good idea,

though after the installation, there is a reboot, page is gone.
 - Original Message - 
 From: Tangorre, Michael 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 3:50 PM
 Subject: RE: How can it be done ?

 pass the ID in the url.

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 28, 2003 9:52 AM
 To: CF-Talk
 Subject: How can it be done ?

 Good afternoon everyone,

 I have a small quetion, may be one of you skilled guys can help me out.

 I have a login page, when the users logs in an ID is pulled from a
database
 with CFQUERY.
 After logging in, a download is started, which will install additional
 software on the users computer.

 Important is that the ID can be reused after the download, so I must find
a
 way to remember that ID somewhere
 or pass it with the download.

 Cookies are out of the question.

 Users have complete control over their browser settings, and I know that
 some have cookies out, other users are behind a firewall which will not
 allow ActiveX.

 Anyone has any ideas ?

 Thanks,

 Chris
 Germany. 
_

 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Robertson-Ravo, Neil (RX)
hmmmtricky especially since there is a reboot...if cookies are a no go,
then I am not sure how you will keep state etc? you could write a file
with the userid to the hard drive (as you are allowing a download). but
even that will require a user to accept the download.


_

From: Chris [mailto:[EMAIL PROTECTED] 
Sent: 28 October 2003 14:52
To: CF-Talk
Subject: How can it be done ?

Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a database
with CFQUERY.
After logging in, a download is started, which will install additional
software on the users computer.

Important is that the ID can be reused after the download, so I must find a
way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that
some have cookies out, other users are behind a firewall which will not
allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany. 
_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
Been thinking of wrting a file to the HD, though that is a second download for the user.
Should all be done in 1 download.
Anyway of writing into the registry with CF, if so what about security limitations ?
- Original Message - 
From: Robertson-Ravo, Neil (RX) 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:08 PM
Subject: RE: How can it be done ?

hmmmtricky especially since there is a reboot...if cookies are a no go,
then I am not sure how you will keep state etc? you could write a file
with the userid to the hard drive (as you are allowing a download). but
even that will require a user to accept the download.

 _

From: Chris [mailto:[EMAIL PROTECTED] 
Sent: 28 October 2003 14:52
To: CF-Talk
Subject: How can it be done ?

Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a database
with CFQUERY.
After logging in, a download is started, which will install additional
software on the users computer.

Important is that the ID can be reused after the download, so I must find a
way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that
some have cookies out, other users are behind a firewall which will not
allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany. 
 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Ricky Fritzsching
I do agree with Neil, but another option before CFMX would be to write
the information into the registry
by using the cfregistry tag. Just another option for you.

_

From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 9:09 AM
To: CF-Talk

hmmmtricky especially since there is a reboot...if cookies are a no
go,
then I am not sure how you will keep state etc? you could write a
file
with the userid to the hard drive (as you are allowing a download).
but
even that will require a user to accept the download.

_

From: Chris [mailto:[EMAIL PROTECTED] 
Sent: 28 October 2003 14:52
To: CF-Talk
Subject: How can it be done ?

Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a
database
with CFQUERY.
After logging in, a download is started, which will install additional
software on the users computer.

Important is that the ID can be reused after the download, so I must
find a
way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that
some have cookies out, other users are behind a firewall which will not
allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany. 
_

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
Thanks Ricky,

I think that writing to the registry will be the best solution for this.
- Original Message - 
From: Ricky Fritzsching 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:27 PM
Subject: RE: How can it be done ?

I do agree with Neil, but another option before CFMX would be to write
the information into the registry
by using the cfregistry tag. Just another option for you.

 _

From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 9:09 AM
To: CF-Talk

hmmmtricky especially since there is a reboot...if cookies are a no
go,
then I am not sure how you will keep state etc? you could write a
file
with the userid to the hard drive (as you are allowing a download).
but
even that will require a user to accept the download.

 _

From: Chris [mailto:[EMAIL PROTECTED] 
Sent: 28 October 2003 14:52
To: CF-Talk
Subject: How can it be done ?

Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a
database
with CFQUERY.
After logging in, a download is started, which will install additional
software on the users computer.

Important is that the ID can be reused after the download, so I must
find a
way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that
some have cookies out, other users are behind a firewall which will not
allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany. 
 _

 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Nick de Voil
 I think that writing to the registry will be the best solution for this.

cfregistry writes to the server's registry, not the client's.

Nick


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
Oops, that is out of the question then...
- Original Message - 
From: Nick de Voil 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:34 PM
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for this.

cfregistry writes to the server's registry, not the client's.

Nick


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread John Stanley
what about having the program write to a text file on the client machine,
then when the user comes back up, read from that text file.

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:34 AM
To: CF-Talk
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for this.

cfregistry writes to the server's registry, not the client's.

Nick

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
Writing to a text file is another download, can only be one download (to keep it simple for the user)

- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:37 PM
Subject: RE: How can it be done ?

what about having the program write to a text file on the client machine,
then when the user comes back up, read from that text file.

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:34 AM
To: CF-Talk
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for this.

cfregistry writes to the server's registry, not the client's.

Nick

 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Greg Luce
In a closed group of users (non-public) like this sounds, I would prefer
users allow cookies for your specific domain if they are set to restrict
cookies accross the board. For this I would code for modern IE, and in
internet options-privacy you can override cookie handling for individual
websites. Wouldn't this be best?

 
Greg

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 11:46 AM
To: CF-Talk
Subject: Re: How can it be done ?

Oops, that is out of the question then...
- Original Message - 
From: Nick de Voil 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:34 PM
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for
this.

cfregistry writes to the server's registry, not the client's.

Nick

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
That would indeed be the best that I have some control over the browser (like IE), though this is not the case here;(
Has to be multi-platform, multi-preference, multi-settings coded
- Original Message - 
From: Greg Luce 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 3:44 PM
Subject: RE: How can it be done ?

In a closed group of users (non-public) like this sounds, I would prefer
users allow cookies for your specific domain if they are set to restrict
cookies accross the board. For this I would code for modern IE, and in
internet options-privacy you can override cookie handling for individual
websites. Wouldn't this be best?

Greg

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 11:46 AM
To: CF-Talk
Subject: Re: How can it be done ?

Oops, that is out of the question then...
 - Original Message - 
 From: Nick de Voil 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 4:34 PM
 Subject: Re: How can it be done ?

  I think that writing to the registry will be the best solution for
this.

 cfregistry writes to the server's registry, not the client's.

 Nick

 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
If a cookie is not set, and you can not use the IP, I can not think of
another way..

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 10:09 AM
To: CF-Talk
Subject: RE: How can it be done ?

hmmmtricky especially since there is a reboot...if cookies are a no go,
then I am not sure how you will keep state etc? you could write a file
with the userid to the hard drive (as you are allowing a download). but
even that will require a user to accept the download.

_

From: Chris [mailto:[EMAIL PROTECTED] 
Sent: 28 October 2003 14:52
To: CF-Talk
Subject: How can it be done ?

Good afternoon everyone,

I have a small quetion, may be one of you skilled guys can help me out.

I have a login page, when the users logs in an ID is pulled from a database
with CFQUERY.
After logging in, a download is started, which will install additional
software on the users computer.

Important is that the ID can be reused after the download, so I must find a
way to remember that ID somewhere
or pass it with the download.

Cookies are out of the question.

Users have complete control over their browser settings, and I know that
some have cookies out, other users are behind a firewall which will not
allow ActiveX.

Anyone has any ideas ?

Thanks,

Chris
Germany. 
_

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread John Stanley
 

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:50 AM
To: CF-Talk
Subject: Re: How can it be done ?

Writing to a text file is another download, can only be one download (to
keep it simple for the user)

- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:37 PM
Subject: RE: How can it be done ?

what about having the program write to a text file on the client machine,
then when the user comes back up, read from that text file.

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:34 AM
To: CF-Talk
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for this.

cfregistry writes to the server's registry, not the client's.

Nick

 _

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread John Stanley
could the first download place a copy of the text file that is looked for
when the user logs back in?

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:50 AM
To: CF-Talk
Subject: Re: How can it be done ?

Writing to a text file is another download, can only be one download (to
keep it simple for the user)

- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:37 PM
Subject: RE: How can it be done ?

what about having the program write to a text file on the client machine,
then when the user comes back up, read from that text file.

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:34 AM
To: CF-Talk
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for this.

cfregistry writes to the server's registry, not the client's.

Nick

 _

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Robertson-Ravo, Neil (RX)
I think you are on a hiding to nothing on this one.. :-(sounds like
you are trying to do something which the web was not designed to do..
if you get a good resolutionthen post it though!

_

From: Chris [mailto:[EMAIL PROTECTED] 
Sent: 28 October 2003 15:50
To: CF-Talk
Subject: Re: How can it be done ?

Writing to a text file is another download, can only be one download (to
keep it simple for the user)

- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:37 PM
Subject: RE: How can it be done ?

what about having the program write to a text file on the client machine,
then when the user comes back up, read from that text file.

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:34 AM
To: CF-Talk
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for this.

cfregistry writes to the server's registry, not the client's.

Nick

 _

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
Can be done, although snall problem then :
The ID comes from the atabase, the downloaded file is a zip-file, means unzip, run, reboot.

If I only could make the following download.zip?ID=5656565 with the zip-file
- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:52 PM
Subject: RE: How can it be done ?

could the first download place a copy of the text file that is looked for
when the user logs back in?

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:50 AM
To: CF-Talk
Subject: Re: How can it be done ?

Writing to a text file is another download, can only be one download (to
keep it simple for the user)

 - Original Message - 
 From: John Stanley 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 4:37 PM
 Subject: RE: How can it be done ?

 what about having the program write to a text file on the client machine,
 then when the user comes back up, read from that text file.

 -Original Message-
 From: Nick de Voil [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 28, 2003 10:34 AM
 To: CF-Talk
 Subject: Re: How can it be done ?

  I think that writing to the registry will be the best solution for this.

 cfregistry writes to the server's registry, not the client's.

 Nick

_

 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
Will keep working on this, and will post what I've done
I also think it is one way street with a roadblock in the begining on this, although
any ideas are welcome.

Chris
- Original Message - 
From: Robertson-Ravo, Neil (RX) 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:50 PM
Subject: RE: How can it be done ?

I think you are on a hiding to nothing on this one.. :-(sounds like
you are trying to do something which the web was not designed to do..
if you get a good resolutionthen post it though!

 _

From: Chris [mailto:[EMAIL PROTECTED] 
Sent: 28 October 2003 15:50
To: CF-Talk
Subject: Re: How can it be done ?

Writing to a text file is another download, can only be one download (to
keep it simple for the user)

 - Original Message - 
 From: John Stanley 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 4:37 PM
 Subject: RE: How can it be done ?

 what about having the program write to a text file on the client machine,
 then when the user comes back up, read from that text file.

 -Original Message-
 From: Nick de Voil [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 28, 2003 10:34 AM
 To: CF-Talk
 Subject: Re: How can it be done ?

  I think that writing to the registry will be the best solution for this.

 cfregistry writes to the server's registry, not the client's.

 Nick

_

 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Jeff Beer
If they have to login, just associate the login with the provided ID.
When the login occurs, retrieve the appropriate ID.

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 28, 2003 9:52 AM
 To: CF-Talk
 Subject: How can it be done ?
 
 
 Good afternoon everyone,
 
 I have a small quetion, may be one of you skilled guys can 
 help me out.
 
 I have a login page, when the users logs in an ID is pulled 
 from a database with CFQUERY. After logging in, a download is 
 started, which will install additional software on the users computer.
 
 Important is that the ID can be reused after the download, so 
 I must find a way to remember that ID somewhere or pass it 
 with the download.
 
 Cookies are out of the question.
 
 Users have complete control over their browser settings, and 
 I know that some have cookies out, other users are behind a 
 firewall which will not allow ActiveX.
 
 Anyone has any ideas ?
 
 Thanks,
 
 Chris
 Germany. 
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread DURETTE, STEVEN J (AIT)
If the user has to log in and then gets an id number from a database, why
don't you create another table that stores the users login info and the id
that matches up to it?That way you just check when they login if they
already have an id number, if no assign one.

 
Steve

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:58 AM
To: CF-Talk
Subject: Re: How can it be done ?

Will keep working on this, and will post what I've done
I also think it is one way street with a roadblock in the begining on this,
although
any ideas are welcome.

Chris
- Original Message - 
From: Robertson-Ravo, Neil (RX) 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:50 PM
Subject: RE: How can it be done ?

I think you are on a hiding to nothing on this one.. :-(sounds like
you are trying to do something which the web was not designed to do..
if you get a good resolutionthen post it though!

 _

From: Chris [mailto:[EMAIL PROTECTED] 
Sent: 28 October 2003 15:50
To: CF-Talk
Subject: Re: How can it be done ?

Writing to a text file is another download, can only be one download (to
keep it simple for the user)

 - Original Message - 
 From: John Stanley 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 4:37 PM
 Subject: RE: How can it be done ?

 what about having the program write to a text file on the client
machine,
 then when the user comes back up, read from that text file.

 -Original Message-
 From: Nick de Voil [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 28, 2003 10:34 AM
 To: CF-Talk
 Subject: Re: How can it be done ?

  I think that writing to the registry will be the best solution for
this.

 cfregistry writes to the server's registry, not the client's.

 Nick

_

 _

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
How about on the page that presents the download you givea popup window in
German (or another non English language... the intent here is deceive) that
when they respond to you add the current URL with ID in it inside their
favorites and make it their homepage so next time they launch their browser,
you have their ID and they are at the URL you need them to be at!!!

 
:-)

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 10:56 AM
To: CF-Talk
Subject: Re: How can it be done ?

Can be done, although snall problem then :
The ID comes from the atabase, the downloaded file is a zip-file, means
unzip, run, reboot.

If I only could make the following download.zip?ID=5656565 with the
zip-file
- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:52 PM
Subject: RE: How can it be done ?

could the first download place a copy of the text file that is looked for
when the user logs back in?

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:50 AM
To: CF-Talk
Subject: Re: How can it be done ?

Writing to a text file is another download, can only be one download (to
keep it simple for the user)

 - Original Message - 
 From: John Stanley 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 4:37 PM
 Subject: RE: How can it be done ?

 what about having the program write to a text file on the client
machine,
 then when the user comes back up, read from that text file.

 -Original Message-
 From: Nick de Voil [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 28, 2003 10:34 AM
 To: CF-Talk
 Subject: Re: How can it be done ?

  I think that writing to the registry will be the best solution for
this.

 cfregistry writes to the server's registry, not the client's.

 Nick

_

 _

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
Good ideas, though cannot be done.

The login occurs, the id is being retrieved, download started, reboot occurs and immediately (without login) a html-page
is started containing a form with the ID filled out.
The user does not have to login again.
- Original Message - 
From: Jeff Beer 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:58 PM
Subject: RE: How can it be done ?

If they have to login, just associate the login with the provided ID.
When the login occurs, retrieve the appropriate ID.

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 28, 2003 9:52 AM
 To: CF-Talk
 Subject: How can it be done ?
 
 
 Good afternoon everyone,
 
 I have a small quetion, may be one of you skilled guys can 
 help me out.
 
 I have a login page, when the users logs in an ID is pulled 
 from a database with CFQUERY. After logging in, a download is 
 started, which will install additional software on the users computer.
 
 Important is that the ID can be reused after the download, so 
 I must find a way to remember that ID somewhere or pass it 
 with the download.
 
 Cookies are out of the question.
 
 Users have complete control over their browser settings, and 
 I know that some have cookies out, other users are behind a 
 firewall which will not allow ActiveX.
 
 Anyone has any ideas ?
 
 Thanks,
 
 Chris
 Germany. 
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
Thanks Michael,

That opens up a new perspective.
Now, one thing that the page being called after reboot is started automatically.
I would have to put it in the Startup Page of their browser, copy the old one first, start up browser and then after the page has been called put back the old startpage.
Can that be done ?
- Original Message - 
From: Tangorre, Michael 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 5:27 PM
Subject: RE: How can it be done ?

How about on the page that presents the download you givea popup window in
German (or another non English language... the intent here is deceive) that
when they respond to you add the current URL with ID in it inside their
favorites and make it their homepage so next time they launch their browser,
you have their ID and they are at the URL you need them to be at!!!

:-)

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 10:56 AM
To: CF-Talk
Subject: Re: How can it be done ?

Can be done, although snall problem then :
The ID comes from the atabase, the downloaded file is a zip-file, means
unzip, run, reboot.

If I only could make the following download.zip?ID=5656565 with the
zip-file
 - Original Message - 
 From: John Stanley 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 4:52 PM
 Subject: RE: How can it be done ?

 could the first download place a copy of the text file that is looked for
 when the user logs back in?

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 28, 2003 10:50 AM
 To: CF-Talk
 Subject: Re: How can it be done ?

 Writing to a text file is another download, can only be one download (to
 keep it simple for the user)

- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:37 PM
Subject: RE: How can it be done ?

what about having the program write to a text file on the client
machine,
then when the user comes back up, read from that text file.

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:34 AM
To: CF-Talk
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for
this.

cfregistry writes to the server's registry, not the client's.

Nick

_

_

 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
You are talking about setting client's system level parameters to launch
their browser and open a specific page after a reboot... well beyond the
capabilities of a web application unless you get into some very advanced
concepts which you have already said can not be used: ActiveX for one...

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 11:32 AM
To: CF-Talk
Subject: Re: How can it be done ?

Good ideas, though cannot be done.

The login occurs, the id is being retrieved, download started, reboot occurs
and immediately (without login) a html-page
is started containing a form with the ID filled out.
The user does not have to login again.
- Original Message - 
From: Jeff Beer 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:58 PM
Subject: RE: How can it be done ?

If they have to login, just associate the login with the provided ID.
When the login occurs, retrieve the appropriate ID.

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 28, 2003 9:52 AM
 To: CF-Talk
 Subject: How can it be done ?
 
 
 Good afternoon everyone,
 
 I have a small quetion, may be one of you skilled guys can 
 help me out.
 
 I have a login page, when the users logs in an ID is pulled 
 from a database with CFQUERY. After logging in, a download is 
 started, which will install additional software on the users computer.
 
 Important is that the ID can be reused after the download, so 
 I must find a way to remember that ID somewhere or pass it 
 with the download.
 
 Cookies are out of the question.
 
 Users have complete control over their browser settings, and 
 I know that some have cookies out, other users are behind a 
 firewall which will not allow ActiveX.
 
 Anyone has any ideas ?
 
 Thanks,
 
 Chris
 Germany. 
 

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Tangorre, Michael
No way... you can ASK them to set their homepage by clicking ok when the
setHomePage method throws the confirmation box up, but you can not force
them. Additionally, that functionality only works in IE I think...

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 11:35 AM
To: CF-Talk
Subject: Re: How can it be done ?

Thanks Michael,

That opens up a new perspective.
Now, one thing that the page being called after reboot is started
automatically.
I would have to put it in the Startup Page of their browser, copy the old
one first, start up browser and then after the page has been called put back
the old startpage.
Can that be done ?
- Original Message - 
From: Tangorre, Michael 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 5:27 PM
Subject: RE: How can it be done ?

How about on the page that presents the download you givea popup window
in
German (or another non English language... the intent here is deceive)
that
when they respond to you add the current URL with ID in it inside their
favorites and make it their homepage so next time they launch their
browser,
you have their ID and they are at the URL you need them to be at!!!

:-)

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 10:56 AM
To: CF-Talk
Subject: Re: How can it be done ?

Can be done, although snall problem then :
The ID comes from the atabase, the downloaded file is a zip-file, means
unzip, run, reboot.

If I only could make the following download.zip?ID=5656565 with the
zip-file
 - Original Message - 
 From: John Stanley 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 4:52 PM
 Subject: RE: How can it be done ?

 could the first download place a copy of the text file that is looked
for
 when the user logs back in?

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 28, 2003 10:50 AM
 To: CF-Talk
 Subject: Re: How can it be done ?

 Writing to a text file is another download, can only be one download (to
 keep it simple for the user)

- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:37 PM
Subject: RE: How can it be done ?

what about having the program write to a text file on the client
machine,
then when the user comes back up, read from that text file.

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:34 AM
To: CF-Talk
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for
this.

cfregistry writes to the server's registry, not the client's.

Nick

_

_

 _

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: How can it be done ?

2003-10-28 Thread Chris
hmmm

I believe this dead end, I will keep you guys updated on this.
- Original Message - 
From: Tangorre, Michael 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 5:45 PM
Subject: RE: How can it be done ?

No way... you can ASK them to set their homepage by clicking ok when the
setHomePage method throws the confirmation box up, but you can not force
them. Additionally, that functionality only works in IE I think...

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2003 11:35 AM
To: CF-Talk
Subject: Re: How can it be done ?

Thanks Michael,

That opens up a new perspective.
Now, one thing that the page being called after reboot is started
automatically.
I would have to put it in the Startup Page of their browser, copy the old
one first, start up browser and then after the page has been called put back
the old startpage.
Can that be done ?
 - Original Message - 
 From: Tangorre, Michael 
 To: CF-Talk 
 Sent: Tuesday, October 28, 2003 5:27 PM
 Subject: RE: How can it be done ?

 How about on the page that presents the download you givea popup window
in
 German (or another non English language... the intent here is deceive)
that
 when they respond to you add the current URL with ID in it inside their
 favorites and make it their homepage so next time they launch their
browser,
 you have their ID and they are at the URL you need them to be at!!!

 :-)

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 28, 2003 10:56 AM
 To: CF-Talk
 Subject: Re: How can it be done ?

 Can be done, although snall problem then :
 The ID comes from the atabase, the downloaded file is a zip-file, means
 unzip, run, reboot.

 If I only could make the following download.zip?ID=5656565 with the
 zip-file
- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:52 PM
Subject: RE: How can it be done ?

could the first download place a copy of the text file that is looked
for
when the user logs back in?

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:50 AM
To: CF-Talk
Subject: Re: How can it be done ?

Writing to a text file is another download, can only be one download (to
keep it simple for the user)

- Original Message - 
From: John Stanley 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:37 PM
Subject: RE: How can it be done ?

what about having the program write to a text file on the client
 machine,
then when the user comes back up, read from that text file.

-Original Message-
From: Nick de Voil [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:34 AM
To: CF-Talk
Subject: Re: How can it be done ?

 I think that writing to the registry will be the best solution for
 this.

cfregistry writes to the server's registry, not the client's.

Nick

 _

_

_

 _


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Jeff Beer
What is the software you are downloading and installing?How are you
installing it?

The only way to do something like this that I can think of is to write
an application that performs all these tasks for you.

It might be easiest to use InstallShield (or similar) and create a
custom install script.You can modify the registry on the client
machine to hold the ID, and tell it to run IE to a specified URL one
time at startup (runOnce).That url, stored in the registry, would
contain the ID.InstallShield is very scriptable, and you can do things
like check to see if the install went correctly and take corrective
action if it did not, etc.

It's certainly possible, without getting into all the political issues
that this kind of forcing a user to install software brings up, but it's
not entirely trivial.You can't do this with Coldfusion (or any other
web/scripting language) alone.

Good luck!

Jeff

 -Original Message-
 From: Tangorre, Michael [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 28, 2003 11:36 AM
 To: CF-Talk
 Subject: RE: How can it be done ?
 
 
 You are talking about setting client's system level 
 parameters to launch their browser and open a specific page 
 after a reboot... well beyond the capabilities of a web 
 application unless you get into some very advanced concepts 
 which you have already said can not be used: ActiveX for one...


 
 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 28, 2003 11:32 AM
 To: CF-Talk
 Subject: Re: How can it be done ?
 
 
 Good ideas, though cannot be done.
 
 The login occurs, the id is being retrieved, download 
 started, reboot occurs and immediately (without login) a 
 html-page is started containing a form with the ID filled 
 out. The user does not have to login again.
- Original Message - 
From: Jeff Beer 
To: CF-Talk 
Sent: Tuesday, October 28, 2003 4:58 PM
Subject: RE: How can it be done ?
 
If they have to login, just associate the login with the 
 provided ID.
When the login occurs, retrieve the appropriate ID.
 
 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, October 28, 2003 9:52 AM
 To: CF-Talk
 Subject: How can it be done ?
 
 
 Good afternoon everyone,
 
 I have a small quetion, may be one of you skilled guys can 
 help me out.
 
 I have a login page, when the users logs in an ID is pulled 
 from a database with CFQUERY. After logging in, a download is 
 started, which will install additional software on the 
 users computer.
 
 Important is that the ID can be reused after the download, so 
 I must find a way to remember that ID somewhere or pass it 
 with the download.
 
 Cookies are out of the question.
 
 Users have complete control over their browser settings, and 
 I know that some have cookies out, other users are behind a 
 firewall which will not allow ActiveX.
 
 Anyone has any ideas ?
 
 Thanks,
 
 Chris
 Germany. 
 
 
_
 
 
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How can it be done ?

2003-10-28 Thread Adam Reynolds
Just email them the link they should run.

Keeps it simple
-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: 28 October 2003 16:52
To: CF-Talk
Subject: Re: How can it be done ?

hmmm

I believe this dead end, I will keep you guys updated on this.
 - Original Message -
 From: Tangorre, Michael
 To: CF-Talk
 Sent: Tuesday, October 28, 2003 5:45 PM
 Subject: RE: How can it be done ?

 No way... you can ASK them to set their homepage by clicking ok when
the
 setHomePage method throws the confirmation box up, but you can not force
 them. Additionally, that functionality only works in IE I think...

 -Original Message-
 From: Chris [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 28, 2003 11:35 AM
 To: CF-Talk
 Subject: Re: How can it be done ?

 Thanks Michael,

 That opens up a new perspective.
 Now, one thing that the page being called after reboot is started
 automatically.
 I would have to put it in the Startup Page of their browser, copy the
old
 one first, start up browser and then after the page has been called put
back
 the old startpage.
 Can that be done ?
- Original Message -
From: Tangorre, Michael
To: CF-Talk
Sent: Tuesday, October 28, 2003 5:27 PM
Subject: RE: How can it be done ?

How about on the page that presents the download you givea popup
window
 in
German (or another non English language... the intent here is deceive)
 that
when they respond to you add the current URL with ID in it inside
their
favorites and make it their homepage so next time they launch their
 browser,
you have their ID and they are at the URL you need them to be at!!!

:-)

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:56 AM
To: CF-Talk
Subject: Re: How can it be done ?

Can be done, although snall problem then :
The ID comes from the atabase, the downloaded file is a zip-file,
means
unzip, run, reboot.

If I only could make the following download.zip?ID=5656565 with the
zip-file
- Original Message -
From: John Stanley
To: CF-Talk
Sent: Tuesday, October 28, 2003 4:52 PM
Subject: RE: How can it be done ?

could the first download place a copy of the text file that is
looked
 for
when the user logs back in?

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 28, 2003 10:50 AM
To: CF-Talk
Subject: Re: How can it be done ?

Writing to a text file is another download, can only be one download
(to
keep it simple for the user)

 - Original Message -
 From: John Stanley
 To: CF-Talk
 Sent: Tuesday, October 28, 2003 4:37 PM
 Subject: RE: How can it be done ?

 what about having the program write to a text file on the client
machine,
 then when the user comes back up, read from that text file.

 -Original Message-
 From: Nick de Voil [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 28, 2003 10:34 AM
 To: CF-Talk
 Subject: Re: How can it be done ?

  I think that writing to the registry will be the best solution
for
this.

 cfregistry writes to the server's registry, not the client's.

 Nick

_

 _

_

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




  1   2   3   >