Mandaligar
New Member
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:\[code\]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; } }}\[/code\]And the config is like that:\[code\]$('#file_upload').uploadify({ 'swf': '../../Components/uploadify/uploadify.swf', 'uploader': '../../Scripts/uploadify/uploadify.cs', 'auto': false, 'buttonText': 'Selecionar', 'debug': true});\[/code\]I am getting a \[code\]HTTP ERROR (404)\[/code\]The path for the uploadify.cs is correct so I don