I have a multi-step file import process. I have a hidden form input in my view that I am trying to populate with the \"CurrentStep\" from the view model.
<
Make sure you model property has a "set" operator.
This won't get updated on post-back:
@Html.HiddenFor( m => m.NoSeq)
public Class MyModel { int _NoSeq; public NoSeq { get { return _NoSeq }; } }