I'm just starting to play with MVC, and something isn't clicking with me. I understand how to make a simple input form, and use a submit button to post the form set up like this:
<form runat="server" method="post" action="/Home/CreateNew" >
But what happens if you're whole app is inside one form tag, and you want to have multiple input forms? For example, I'm using some AjaxControlToolkit controls on my master page, which requires the entire page to be inside a form tag. If I have two completely different input forms, do I have to funnel them both through the CreateNew controller? How would I tell the form to use a different action for each input form?