从数据库检索 MS Word 文档并保存在本地
我使用 AsyncFileUpload AJAX 控件通过 LINQ to SQL 将文件上传到 SQL Server 数据库中的列。如何使用 LINQ to SQL 从数据库检索文档并允许用户使用“另存为”对话框将文档保存到本地驱动器?这是 ASP.NET Web 应用程序。 DocumentFileContent 数据库列是 Image SQL Server 数据类型。谢谢
I have used AsyncFileUpload AJAX control to upload a file to a column in a SQL Server database using LINQ to SQL. How do I retrieve the document from the database and allow the user to save to local drive using a Save As Dialog box using LINQ to SQL? This is ASP.NET web application. The DocumentFileContent database column is a Image SQL Server data type. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Web 表单中的最佳方法是使用 HTTP 处理程序。
image
数据类型的数据库查询将映射到byte[]
。The best way in webforms is to use an HTTP handler.
The DB query for an
image
datatype will map to abyte[]
.