1
I have a form template that I want the customer to use to paste on your page.
The form points to a. aspx page on my server.
At the Page_load event in mine. aspx I want to get the fields filled form via post, however the four options below return empty (the first) or null array (the following three):
var a = HttpContext.Current.Request.Form;
var b = Request.Form[Constantes.EngageFormParams.EnrollmentKey];
var c = Request[Constantes.EngageFormParams.EnrollmentKey];
var d = Request[Constantes.EngageFormParams.Login];
If I use method='get' it works. How to make the post work?