when posting back to my controller my model is populated with correct valeus and my string filed has the file name, but the 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 needing set to send the fiel back to the controller?