HTTP ERROR (404) with uploadify and custom uploader for asp net [ASP NET MVC 4]
问题 I need to implement uploadify on my asp net mvc 4 application. I have replaced the uploadify.php with this simple class just for test purpose: public class uploadify : IHttpHandler { public void ProcessRequest(HttpContext context) { HttpPostedFile oFile = context.Request.Files["Filedata"]; oFile.SaveAs("C:\\" + oFile.FileName); } public bool IsReusable { get { return false; } } } And the config is like that: $('#file_upload').uploadify({ 'swf': '../../Components/uploadify/uploadify.swf',