I defined a HttpPost method in my asp.net MVC controller like below and my Post URL is http://mydomain/home/ebook
[HttpPost]
public ActionResult ebooks(string email)
{
//insert email into Database
return RedirectToAction("Incoming URL");
}
And submitting my PHP form by declaring post action to my MVC controller’s HttpPost method in an another PHP website, my php website page URL is like http://myphpsitedomain/downloads.php
<form id="ebook" action="http://mydomain/home/ebook" method="post">
<label for="email">Email</label>
<input type="email" name="email" id="email" required="required" />
<input type="submit" value="Submit" />
</form>
How to track PHP web page URL when PHP form (above)submitted to ASP.Net MVC HttpPost method?