テーブルを作成しました
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を使用して添付する方法と送信する方法
解決策を教えてください........
ありがとう、よろしく、 Venkat Kumar Chigulla。