Question
how to set form action attribute to coldfusion variable
Have a situation like
<cfset var1='http://site-name/dir/subdir/'' & var2>
<form action=? target='middle' method="get">
<input name='a' type='submit' value='click'>
</form>
Want to set the form attribute to the variable var1.
How do you do this ?
