How can i get post data off jot form on my redirected page?

  • radixweb1041
    Asked on September 12, 2016 at 5:10 AM

    Hi,

    I use Request.form property but it doesn't give me post data.

     

     

    Thanks In Advance

    Anuj Dave

     

  • Irshad
    Replied on September 12, 2016 at 6:40 AM

    You can check the following guides, that will help you on how to fetch the post data sent by your form:

    Send POST DATA in your Custom Thank You page 

    Send POST DATA to your MySQL database using PHP 

     You can also easily get the PHP variables by following this guide: http://www.jotform.com/help/51-How-to-Post-Submission-Data-to-Thank-You-Page. You can take note of them and use them in your PHP file.

    I hope that helps.

    If you face any issue, or need further assistance, feel free to revert back.

    Thanks.

  • radixweb1041
    Replied on September 12, 2016 at 6:44 AM

    Actually i have asp.net application but can't get post data through Request.QueryString["firstname"]

    Method.

     

    Please help..

     

  • Nik_C
    Replied on September 12, 2016 at 9:48 AM

    I'm not sure you can do that directly. I can suggest you to check Webhooks that you can use to send HTTP Post data to URL. On the other hand, if you want to export your form submissions data into an SQL script so you can easily import it into your SQL Server and automatically create a table for you, use this app: http://sqlserver.jotform.io/

    Hope it helps. 

    If I find out something more I will get back to you.

    Thank you!

  • Noobian
    Replied on December 28, 2016 at 8:45 AM

    Late to the party, but for asp.net the payload looks something like the following, according to requestBin.

    pretty

    rawRequest

    formTitle

    formID

    username

    submissionID

    type

    ip

    webhookURL //i think this is only present if you are using a webhook integration though.

    so something like Request.Form["rawRequest"] will give u the json string representation of what the answers were for the submitted form.