I want to send ViewData.model to Special action with the last user data entry.
I mean, the Edit form is showed to the User, User input values to
some fields, when he/she will click on the Ajax.ActionLink, I am
supposed to get my Model with the last modified in the action.
I am sending ViewData.Model to the Action with the below code, but i can not catch last changed value.
<%=Ajax.ActionLink("Contact this person Ajax", "MyAction", "MyController",ViewData.Model, new AjaxOptions { InsertionMode = InsertionMode.Replace }, new { @class = "thickbox" })%>
What shall i do?