Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试在此页面上应用该方法,但此示例将文件保存到磁盘而不是数据库。那么,您能否告诉我应该对示例方法进行哪些更改,或者是否有任何示例使用此 Kendo Upload 将多个文件保存到数据库?
以下方法声明 -
private IEnumerable<string> GetFileInfo(IEnumerable<HttpPostedFileBase> files)
它接收上传的文件IEnumerable<HttpPostedFileBase>作为参数。它是所有上传文件的集合。每个文件都公开一个属性InputStream。有关更多信息,请访问此msdn 页面
IEnumerable<HttpPostedFileBase>
InputStream
因此,现在您有了流形式的文件内容,将此流转换为 byte[] 并将其保存到数据库。一些建议张贴在这里。