I am trying to obtain data from my html code like the \"acquringCode\", \"cardAcceptor\", and \"merchantId\". I can\'t figure how how to obtain that data in my controller.
Please try by adding the FormCollection parameter to the action AddSaveTreventLocationLookup
Like this:
public ActionResult AddSaveTreventLocationLookup(FormCollection formCollection)
{
// now you can get the values you want
string acquiringInstitutionIdentificationCode = formCollection["AcquiringInstitutionIdentificationCode"];
.......