You can access it through Request.Form in controllers. Instead of the GetValues method GetValues these values ββget from it an indexer as:
var id = Request.Form["id"];
PS: If the given key does not exist, it does not return null or throws any exception. Instead, it returns StringValues.Empty .
source share