我创建了一个表
create table files
(
id int identity(1,1),
Name_of_file varchar(50) null,
interviewfile varbinary(max) Null,
)
将 .doc 文件插入到文件表中
insert into files
select 'DB Creation' as filetype, *
from openrowset
(BULK 'E:\Office Works\Get SMS\DBA SMS Exam Stuff with
DocumentationStandards\Interview Questions\Indexes-I.doc', SINGLE_BLOB)
as x
现在我想将“Indexes-I.doc”文件作为附件发送到特定邮件 ID。
我应该如何附加以及如何使用 Asp.Net 3.5 发送它
请告诉我解决方案............
谢谢和问候,文卡特·库马尔·奇古拉。