Home  |   Guide to VP-ASP  |   Advanced Form Handling  |    Purchase
Quick Links

Home

Purchase

FAQ

Help and Support

Advanced Form Handling

 

Responses

The hard work has been done for you. Try Advanced Form Handling

  Responses
 

Once the person has completed the for and advanced form handler sends emails and optionally stores the data into the database, you have numerous choices on what happens next.

  • Write a simple text message
  • Generate a hyperlink
  • Redirect to another page or site
  • Write a complex message.

 

Write a simple message

<input type=hidden name="config_completiontext" value="Thank you for completing this form">

Use the above configuration to write a simple message.

 

Generate a hyperlink

<input type=hidden name="config_completionlinkl" value="http://www.xxx.abc.com">

Use the above to generate a hyperlink to a specific URL. Can be used in conjunction with a simple message.

 

Automatically redirect to another location

<input type=hidden name="config_completionurl" value="http://www.vvvsomeplace.com">

Redirects to the url.

 

Write complex completion message

<input type=hidden name="config_completionurl" value="mythankyou.htm">

Goes to your own unique completion page. Create your own completion page and redirect to it.