----- Original Message -----
Sent: Monday, April 08, 2002 3:59
PM
Subject: RE: [CFTALKTor] Post to
Self
don't forget the #CGI.QUERY_STRING# variable ... if there is a ?.... in
the url.
I
usually use something like this...
<CFSET MyPageName = CGI.SCRIPT_NAME>
<CFIF
Len(CGI.QUERY_STRING)>
<CFSET MyPageName = MyPageName &
"?" & CGI.QUERY_STRING>
</CFIF>
then
your action parameter would be
action="<cfoutput>#MyPageName#</cfoutput>"
--
cheryl
#CGI.Script_name#
=============================
Mike Lau
Web
Developer
[EMAIL PROTECTED]
www.userinmind.com
=============================
Hi All,
Please excuse the beginner question. I
am trying to make pages that post to themselves. I there a way to
set up a variable that that dynamically includes the template name so I
don't have to keep changing the template name when I reuse a
form.
Thanks
Mike