标签: c#
如何将System.Drawing.Image设置为fileUpload控件中的文件?
答案 0 :(得分:3)
使用发布文件中的流(在控件的FileContent属性上)Image.FromStream:
FileContent
Image.FromStream
var img = Image.FromStream(file.FileContent);