I may have done this already… and I might just be missing something simple, but essentially I just want to be able to do this…
public ActionResult ContinueProcess(Model m, int id){
}
I just want to pass the model and another parameter at the same time. Any thoughts? Thanks!
I would certainly create a ViewModel to handle this
Return this ViewModel in your get action method’
And in your View, Have a HTMLelement(textbox/hidden) to hold the value of this
Now you should be able to acceess this in your httppost action method