Winfrom中如何上传照片
Winfrom中如何上传照片 --------------------编程问答-------------------- WebClient wc = new WebClient();wc.UploadData(...) --------------------编程问答-------------------- --------------------编程问答--------------------
FileStream fs = new FileStream("imagePath");
byte[] bytes = new byte[fs.Length];
fs.Read(bytes, 0, bytes.Length);
保存bytes到数据库 --------------------编程问答-------------------- FileStrem 中有这样的构造函数吗 new FileStream("imagePath")
补充:.NET技术 , .NET Framework