Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Variable Data to Compile Hyperlink 1

Status
Not open for further replies.

sysadmin07

IS-IT--Management
Feb 20, 2007
41
US
Hi,

I have two textboxes on a ColdFusion page for users to enter information into that's being written to an Access DB.

If a given URL is and the user enters "test1" and "test2" into the textboxes, how can I use that data to make the URL:


This would preferably take place before the user hits "Submit" and the data is written to the DB. If it has to get written, I'd appreciate tips for that too.

Thank you.
 
Just curious, but what's the functional necessity?

You can rewrite the action attribute of the form using Javascript. This is usually done using onSubmit() or, if you prefer, onBlur in the text boxes. Then you have to consider what to do if the user clears the text box(es).

Phil Hegedusich
Senior Programmer/Analyst
IIMAK
-----------
Pity the insomniac dyslexic agnostic. He stays up all night, wondering if there really is a dog.
 
Give you have:
Code:
<from action="somepage.cfm" method="post">
[green]  <input type="text" name="hi" />
  <input type="text" name="there" />[/green]
</form>
on the page with the form, then the page it submits to "somepage.cfm" you'd just do:

Code:
<a href="[URL unfurl="true"]http://example.com/[/URL][green]<cfoutput>#form.hi#,#form.there#</cfoutput>[green]
Ignoring XSS attack ramifications and other needed sanitizing.

What sepecifically are you trying to do with this?

[plug=shameless]
[/plug]
 
Thanks for the help. I wanted to be able to refer to a specific page on my site based on a CF submission. Don't need this any longer, but interesting to know the capability is there.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top