Any one Know How to give name to a form in Asp.net MVC Html.BeginForm() i want only name not action or controller name because i want to post it through Java Script. Something like this Html.BeginForm(id = "frm")
i tried Html.BegainForm(null,null,new{id="frm",name="frm})
Html.BegainForm(new{@id="frm",@name="frm})
But Above code Produce Code Like This
when see through View Source