So my problem right now is that I cant get my model into my controller when I submit this following form. I am trying to have the items from the BillingCodes (which is a lis
Your View is type of BillingCodeList, but you are trying to send List to you action in controller.
Try to change action as follows:
[HttpPost]
public void SubmitTimesheet(BillingCodeList model)
{
string uri = "";
foreach (var billingCode in model.BillingCodes)
{
//do stuff with each of these
}
}