Caspio makes it easy to create a wide variety of DataPages to easily collect, search, and view data.  If you would like to create Caspio apps, but there are some HTML forms you must preserve, it is possible to tie these forms into your Caspio database and gain the advantages of your data being submitted to a central location. 

You can use this technique when your original form uses the GET method. 

Steps: 

  1. Create a Submission Form and apply the following configurations. 
    1. On the DataPage Data Source screen, select the base table where you want to store the data submitted from your original form. Because you are receiving this data through parameters, enable advanced options and parameters. 
    2. In the Select fields screen, select the fields you wish to receive by moving them from the left to the right-hand panel.  
    3. On the DataPage Configure Fields > External Associations and Defaults section, select Receive value or parameter. 
      • By default, after your end-user clicks submit on the original form, the completed Web Form will display to your end-user and prompt them to click Submit again.  In some instances this is a good option because you can format the DataPage to serve as a confirmation page. 
      • If you would like to have the Web Form submit automatically, you can add a small snippet of JavaScript into an HTML block.  If you choose to add these lines of code, be sure that all of your DataPage elements are Text Fields or Text Areas and that you are not attempting to submit values to fields marked as unique.  All of the data validation will have to be handled on your original form.  On the Configure Fields, using the Insert button at the lower right hand corner of the DataPage Elements panel add an HTML block and move it down to the last element in your DataPage elements. Go to the Source tab and insert the following JavaScript:
  1. Redirect your end-user.
    On the Destination and Emails screen, select where you would like your end-user to be directed after their information has been submitted.  You can also activate notification and acknowledgement emails.
  2. Deploy the Submission Form and copy the deploy code URL.  You will need this address to alter your original form.  
  3. Change the form action to the Caspio web address.
    1. Go to the HTML page of your original form and locate the Form tag.  Inside the Form tag there is an “Action” parameter that chooses the destination after the end-user clicks Submit.   
    2. Insert the Caspio URL code into the action parameter for the form to pass the data to your Web Form. 
  1. Add the AppKey to the original form items.
    The portion of the deploy code URL after the question mark also needs to be passed using the original form.  We accomplish this by adding a hidden element to the form.  Create an input tag that will have three parameters: type=”Hidden”, name=”AppKey” and value=”The AppKey from your Caspio URL”.
Note: This article uses external HTML, JavaScript, or third-party solutions to add functionality outside of Caspio standard feature set. These solutions are provided “as is” without warranty, support or guarantee. The code within this article is provided as a sample to assist you in the customization of your web applications. You may need a basic understanding of HTML and JavaScript to implement successfully.
code1
 <script> 

setTimeout('document.getElementById("caspioform").submit()',0); 

</script>