我想将(INSERT)
个doc文件发送到我的数据库表中。在asp.net 3.5
中执行此操作所需的代码是什么?
答案 0 :(得分:1)
将发布的文件转换为字节流。
byte[] myByte = new byte[fupUpload.PostedFile.ContentLength];
Stream imgStream = fupUpload.PostedFile.InputStream;
imgStream.Read(myByte, 0, fupUpload.PostedFile.ContentLength);
然后使用您在应用程序中使用的ADO.NET模型将myByte
流保存到数据库中。