So now I can retrieve a string and integer
by doing this for string
LastName = formCollection["LastName"]
and for int
Amount = int.Parse(formCollection["Amount"])
My problem now is for enum. I tried this, still have an error
Issuer = Enum.Parse(formCollection["Issuer"]);
Issuer = Enum.Parse(typeof(Issuer), formCollection["Issuer"]);