如何在asp.net中将doc文件发送到数据库

发布于 2024-11-05 03:52:31 字数 92 浏览 0 评论 0 原文

我想发送(INSERT)一个文档文件,例如简历到我的数据库表中。在 asp.net 3.5 中执行此操作需要哪些代码?

I want to send (INSERT) a doc file, e.g resume into a table of my database. What is the code required to perform this in asp.net 3.5?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌无敌 2024-11-12 03:52:32

将发布的文件转换为字节流。

byte[] myByte = new byte[fupUpload.PostedFile.ContentLength];
Stream imgStream = fupUpload.PostedFile.InputStream;
imgStream.Read(myByte, 0, fupUpload.PostedFile.ContentLength);

然后使用您在应用程序中使用的 ADO.NET 模型将 myByte 流保存到数据库中。

Convert the posted file into a Byte Stream.

byte[] myByte = new byte[fupUpload.PostedFile.ContentLength];
Stream imgStream = fupUpload.PostedFile.InputStream;
imgStream.Read(myByte, 0, fupUpload.PostedFile.ContentLength);

Then save the myByte stream into the DB using the ADO.NET Model, that you are using in your application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文