Beginning of the section states (highlight is mine):
Quote:
There are a variety of ways we can access posted form parameters within our HTTP POST Edit method.One simple approach is to just use the Request property on the Controller base class to access the form collection and retrieve the posted values directly:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, FormCollection formValues) {
|
Isn't it a bit strange to suggest retrieving form parameters from
Request property when there is
formValues parameter of type
FormCollection that is passed to the method specifically for this purpose?
Thanks