//method declaration
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Step2_UpdateCart(bool? isNextStepClicked)
//one of many of the view's fields processed by the method
<input type="hidden" name="isNextStepClicked" value="false" />
I'm reverse engineering a View/Controller set where a form within the view has a series of inputs that are passed via the Submit. One of the inputs is a hidden field - it's name is found in the method's signature - and is the only value found in the signature - the rest of the values come from the Request object.
I thought perhaps it might be a case where the method could recursively call itself with a different value than the form carried but i don't see that happening anywhere.
Does this make any sense? (either my question or my code sample).
many thanx