CFLOCATION, but with a form

2007-12-18 Thread Dave Merrill
Hello folks, As I understand it, cflocation sends a redirect to the browser, navigating it to a new page, potentially including url parameters. Is there any way to do a similar thing, but emulating a form, so passed parameters can be kept out of the url? Only thing I can think of is to render an

Re: CFLOCATION, but with a form

2007-12-18 Thread Tom Chiverton
On Tuesday 18 Dec 2007, Dave Merrill wrote: As I understand it, cflocation sends a redirect to the browser, navigating it to a new page, potentially including url parameters. Is there any way to do a similar thing, but emulating a form, so passed parameters can be kept out of the url? Store

RE: CFLOCATION, but with a form

2007-12-18 Thread Dave Merrill
: Tom Chiverton Sent: Tuesday, December 18, 2007 11:17 AM To: CF-Talk Subject: Re: CFLOCATION, but with a form On Tuesday 18 Dec 2007, Dave Merrill wrote: As I understand it, cflocation sends a redirect to the browser, navigating it to a new page, potentially including url parameters

Re: CFLOCATION, but with a form

2007-12-18 Thread Todd
Without javascript involved or using GetPageContext().Forward() ( read: http://www.bennadel.com/blog/382-Is-ColdFusion-s-GetPageContext-Forward-Method-Worth-Using-.htm), then I don't think you're going to find what you're looking for. On Dec 18, 2007 2:48 PM, Dave Merrill [EMAIL PROTECTED] wrote:

RE: CFLOCATION, but with a form

2007-12-18 Thread Dave Watts
Is there a form equivalent to the http mechanism used by cflocation, where the server side generates info that gets passed to a new page? No, there isn't. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction

Re: CFLOCATION, but with a form

2007-12-18 Thread Ian Skinner
Semi-relevant: cfhttp can submit a form with specified data to a specified url, but the whole thing happens on the server, without the browser relocating anywhere. What I'm looking for is just like that, but navigating the browser to that submitted pg. Dave Merrill I am not seeing how this

RE: CFLOCATION, but with a form

2007-12-18 Thread Dave Merrill
Ian, that's exactly what I was looking for, a server response that asks the browser to submit a form, the form analog of what cflocation does. It doesn't surprise me that no such thing exists. Dave Merrill -Original Message- From: Ian Skinner Sent: Tuesday, December 18, 2007 3:09