这是我在数据库中的表:
我像这样阅读数据库:
DataClassesDataContext db = new DataClassesDataContext();
usertable thisuser = db.usertables.First(p => p.username == User.Identity.Name);
所以,thisuser.picture
是图像的句柄。但是如何在我的页面上的 asp:image 控件中显示它?
编辑 我用这段代码保存图片:
DataClassesDataContext db = new DataClassesDataContext();
usertable thisuser = db.usertables.First(p => p.username == User.Identity.Name);
byte[] filebyte = FileUpload1.FileBytes;
System.Data.Linq.Binary fileBinary = new System.Data.Linq.Binary(filebyte);
thisuser.picture = fileBinary;
db.SubmitChanges();
有什么不对 ?