I have a form template that I want the client to use to paste onto your page.
The form points to a .aspx page on my server.
In the Page_Load event in my .aspx I want to get the fields filled out of the form via post, however, the following four options 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?