我想在不使用处理程序的情况下显示数据库中的二进制数据(图像)
var imgLogo = cid.Tables[0].Rows[0]["Logo"].ToString();
你能建议我怎么做吗?这是我的 aspx 内容
我如何从代码隐藏中设置 imageUrl?我已经尝试过低于一个,但它不工作
Byte[] bytes = (Byte[])cid.Tables[0].Rows[0]["Logo"];
Response.Buffer = true;
Response.Charset = "";
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.ContentType = "image/jpg";
Response.BinaryWrite(bytes);
我怎么能从这个设置imageUrl?
提前致谢。