I got this ajax form in a ASP.NET MVC beta application :
<%using (this.Ajax.BeginForm("Edit", "Subscriber",
new AjaxOptions { OnSuccess = "onEditResult", HttpMethod = "GET" }))
{%>
<%=Html.Hidden("idSub", p.Id.ToString())%>
<input type="submit" value="Edit"/><%
} %>
And my controller method :
[AcceptVerbs(HttpVerbs.Get)]
public JsonResult Edit(String idSub)
{ (...)
}
But the idSub is always null, before upgrading to the beta I swear I see this method working !
I have upgraded the JS files (Microsoft Ajax) and the assemblies as recommended.