如何将存在数据库里的图片下载到客户机器上?(100分)

  • 主题发起人 主题发起人 石嶷山友
  • 开始时间 开始时间

石嶷山友

Unregistered / Unconfirmed
GUEST, unregistred user!
如何将存在数据库里的图片下载到客户机器上?
 
procedure TForm1.BitBtn2Click(Sender: TObject);
Var
Ms:TStringStream;
jpg:Tjpegimage;
begin
Ms:=TstringStream.Create('');
jpg:=tjpegimage.Create;
TBlobField(ADOquery1.FieldByName('photo')).SaveToStream(Ms);
Ms.Position :=0;
Jpg.LoadFromStream(Ms);
Image2.Picture.Assign(Jpg);
Ms.Free;
jpg.free;
end;
end.
 
谢了。你的回答也不是正确的。
我说的是用 ASP.NET 的,是 B/S 模式,不是C/S模式的。
 
用流往Response里写成不,要不就要在服务器上生成了
 
谢谢 boy2002cn 富翁。能否提供 C# 例子?
 
后退
顶部