When posting back to my controller my model is populated with correct values and my string field has the file name, but Request.Files is empty.
My input at the view is:
<input id="SitePlan" name="SitePlan" type="file" value="<%= Html.Encode(Model.SitePlan) %>" />
My form tag begins with:
<% using (Html.BeginForm(new { enctype = "multipart/form-data" }))
Is there anything else I need to set to send the field back to the controller?