1.c#
HttpPostedFileBase file = Request.Files["imagePic"];
string name = file.FileName;
Stream fileStream = file.InputStream;
byte[] byimg
如何将图片转换二进制存到数据库呢?
阅读 37
2022-01-18
1.c#
HttpPostedFileBase file = Request.Files["imagePic"];
string name = file.FileName;
Stream fileStream = file.InputStream;
byte[] byimg
相关推荐
精彩评论(0)