Currently working on a project in MVC-3. Trying to put the following code in my opinion, but Visual Studio tells me that it cannot find the Serialize method.
@Html.Serialize("User",Model)
(ex)
@using (Html.BeginForm()) { @Html.Serialize("User",Model) <fieldset> ... </fieldset> }
Is this feature missing in MVC-3? I see examples of people using it in MVC-2. Perhaps there is a new way to solve this problem?
Rob
source share