private byte [] GenerateThumbNail( byte [] foto){ System.IO.MemoryStream memStream = new System.IO.MemoryStream(foto); int thumbWidth = 88; int thumbHeight = 100; if (QueryStringHelper.ItemType == "detail"){ thumbWidth = 250; thumbHeight = 250; } System.Drawing.Image
Read More...