2
Answers

Post all ListBox Item values View to Controller

@Html.ListBoxFor(x => x.CommonCodeID, Model.CommoncodeItems, new { @class = "BranchName", @style = "width:200px;height:100px;" })
 
 
 
 
 
 
My Model :
public int[] CommonCodeID { get; set; } 
Answers (2)