I'm trying to uplaod a file using
<%
using (Ajax.BeginForm("LoadFile", new AjaxOptions { }))
{
%>
<input type="file" is="Fichier" name="fichier" />
<%
}
%>
and in my controller Request.Files is always empty. If i change to Html.BeginForm, the file is uploaded fine...
what am I missing?
thx