> But my form method is "post" not "get" wouldn't that cause
> that to fail?

I haven't followed the thread too closely, but if your question is whether
you can use URL parameters at the same time as form fields, you can. The URL
parameters get put into the HTTP request header, and the form fields get put
into the HTTP request body.

So, you could have a form like this:

<form action="" method="post">
<input type="text" name="foobar">
...
</form>

and in your action page, you could have code like this:

<cfoutput>
#URL.bar#<br>
#Form.foobar#
</cfoutput>

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

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

Reply via email to