Omar Sherif
Omar Sherif

Reputation: 649

Sending Data from wp froms to asp.net system

I'm working currently on a Services website project, I'm using Wordpress to create the home page and blog.

On the home page, there is a button linked to another page contains a wpfrom to send the services requests to .net CRM system.

how can I send data from this form to a .net system?

Upvotes: 2

Views: 80

Answers (1)

Haley Mueller
Haley Mueller

Reputation: 497

One way is to make an API call to the .NET server.

Here are the general steps to make a call:

  1. Send POST values from the wordpress button to the .NET page URL
  2. Create a page in .NET that accepts POST values
  3. On the .NET side do something with that information

Upvotes: 1

Related Questions