本文介绍了HTTP错误(404)与uploadify和自定义上传的ASP网[ASP NET MVC 4]的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要实现uploadify在我的ASP净MVC 4应用程序。

I need to implement uploadify on my asp net mvc 4 application.

我已经取代这种简单的类的uploadify.php只是为了测试目的:

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; }
    }
}

和的配置是这样的:

$('#file_upload').uploadify({
    'swf': '../../Components/uploadify/uploadify.swf',
    'uploader': '../../Scripts/uploadify/uploadify.cs',
    'auto': false,
    'buttonText': 'Selecionar',
    'debug': true
});

我得到一个 HTTP错误(404)
对于uploadify.cs的路径是正确的所以我不明白为什么没有找到这个资源。

I am getting a HTTP ERROR (404)The path for the uploadify.cs is correct so I don´t see why this resource is not found.

推荐答案

如果您在MVC 4做网站,为什么不使用控制器,而不是一个IHttpHandler的?

If you are doing the site in MVC 4, why not just use a controller instead of an IHttpHandler?

的How我是否能够得到jQuery的Uploadify插件的ASP.NET MVC的工作?

这篇关于HTTP错误(404)与uploadify和自定义上传的ASP网[ASP NET MVC 4]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 02:40