Open
Description
SupplyParameterFromForm
currently only binds form data from the request body. But forms can also send data in the URL query string in a GET request. If you're trying to handle a form that does a GET request you currently have to use SupplyParameterFromQuery
, which doesn't do complex model binding. It seems like we should provide a way to bind data from the query string so that we can handle any form data.
Activity