asp.net C#如何上传指定路径的图片,不用FileUpload控件

内容如题。谢谢
2024-12-23 13:38:57
推荐回答(2个)
回答1:

/////////////////////////////
FileStream tfs = File.Open(filepath,FileMode.Open);
BinaryReader by = new BinaryReader(tfs);
byte[] outB = new byte[(int)tfs.Length];
by.Read(outB, 0, (int)tfs.Length);
tfs.Close();
by.Close();
//////////////////////////////
outB就是上传文件的2进制流,接下来想怎样弄就怎样弄了。

回答2:

不用fileupload, 就要用 File html 控件