http://community.csdn.net/Expert/topic/3237/3237210.xml?temp=.9043848

解决方案 »

  1.   

    byte[] ffff=(byte[])m["image"];//m为OleDbDataReader,image为字段

    System.IO.MemoryStream dddd=new MemoryStream(ffff);
    Bitmap fff=new Bitmap(dddd);
    Image mmmm=fff;

    Image.Image=mmmm;
      

  2.   

    http://dotnet.aspx.cc/ShowDetail.aspx?id=ECD9AE16-8FF0-4A1C-9B9F-5E8B641CB1B1
      

  3.   

    我要在网页上面显示图片,web里面没有PictureBox这个控件。只有Image控件,它没有image这个属性,只有ImageUrl这个属性。我该怎么办?