[EMAIL PROTECTED] wrote: > All, > > Is there a way to pass a #form.variable# to a form from a hyperlink? > > I'm trying to pass a string to a processing page from a hyperlink becuase > the processing page is not under our control and we're being told there's > code to handle strings passed via the URL scope. > > Any ideas? >
<form action="http://theremoteurl.com/somefile.cfm" method="post" name="f" id="f"> <input type="hidden" name="formvariable" value="test"> </form> <a href="#" onClick="document.f.submit();">The Hyperlink</a> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/flex2/ Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270580 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

