在MVC4 SinglePageApplication中上传图像/文件

时间:2012-05-04 13:36:51

标签: asp.net-mvc image file-upload asp.net-mvc-4

我正在开发一个MVC4 SPA应用程序。其中一项功能是能够上传文件/图像并存储在数据库中。我想知道该怎么做。我们可以用普通的MVC或Asp.net处理相同的方式吗?这是我的模特:

    public byte[] Image { get; set; }
    public byte[] Binary { get; set; }
    public string Name { get; set; }
    public string Description { get; set; }
    public string OtherInfo { get; set; }

如果可能,请分享一些演示/教程......

谢谢

1 个答案:

答案 0 :(得分:1)

我做了类似的事情并最终使用了Telerik MVC组件(开源版本)。

上传控件非常易于在该套件中使用。