想在a.aspx页面显示图片,
我在b.aspx.cs的load方法里写DataTabledt=bll.getDt(Id);intnum=dt.Rows.Count;if(num==count){byt...
我在b.aspx.cs的load方法里写
DataTable dt = bll.getDt(Id);
int num = dt.Rows.Count;
if (num == count)
{
byte[] byt1;
byt1 = (byte[])(dt.Rows[0]["TYPEIMAGE"]);
Response.BinaryWrite(byt1);
Response.ContentType = "image/jpeg";
Response.Flush();
Response.End();
Response.Close();
}
再在a.asp页面写<asp:Image src="b.asp" ..>
没显示图片,是什么问题 展开
DataTable dt = bll.getDt(Id);
int num = dt.Rows.Count;
if (num == count)
{
byte[] byt1;
byt1 = (byte[])(dt.Rows[0]["TYPEIMAGE"]);
Response.BinaryWrite(byt1);
Response.ContentType = "image/jpeg";
Response.Flush();
Response.End();
Response.Close();
}
再在a.asp页面写<asp:Image src="b.asp" ..>
没显示图片,是什么问题 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询