I’m working with a WordPress site at the moment that has a form for which I want the data redirected. Put another way, I’m looking to have a PHP form submitted to an Asp.net web page. Is this possible?
The form is created with a WordPress plugin called Contact Form 7
Regards,
Jacques
Yes. You can do a POST to the ASP.NET page, and on that page you would just need to use Request.Form to access the posted values. You could also do a GET and grab them through Request.QueryString.
For security reasons, you might want to check the source where things are coming from on the ASP.NET page to make sure it’s coming from the WordPress site.