本文介绍了fileupload插入第2部分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
伙计们,
我的程序使用此代码:
byte [] filedata = Fileupload1.FileBytes;
row [productimg] = filedata;
但是,我的问题是在我的datalist视图下的productimg列中,它刚刚声明System.byte []。
如何将其更改为我上传的图片。顺便说一句,在我的产品专栏中,我使用image作为数据类型。
Guys,
My program worked with this code:
byte[] filedata = Fileupload1.FileBytes;
row["productimg"] = filedata;
But, my problem is in my datalist view under the productimg column it's just stated "System.byte[]".
How can I change that into the picture i uploaded. Btw, in my products column i used image as the data type.
推荐答案
这篇关于fileupload插入第2部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!