For example..
<% using (Html.BeginForm()) { %>
<%= html.textBox(Model.IwantThisField)%>
<%using (Ajax.BeginForm("ActionName", new AjaxOptions { fancy ajax options })) %>
<%{%>
<label for="stringVar">This is sent to Action</label>
<input type ="submit" id="button" />
<%}%>
<%= html.textBox(Model.IalsoWantThisField) %>
<input type="submit" id="mainBtn"/>
<% } %
>
Any more information needed I will provide. This has had me stumped on a Fridat afternoon which is not at all fun. Any help much appreciated!