I am working on a ASP.NET MVC web site which has a form that allows for the upload of files using the multipart/form data enctype option on the form tag like so
<form enctype='multipart/form-data' method='post' action='<%= Url.Action('Post','Entries',new {id=ViewData.Model.MemberDetermination.DeterminationMemberID}) %>'>
How would I write this to do an ASP.NET MVC Ajax form post instead?
Use:
But in second case I’m not sure that it will work.