在一个页面a.htm中,有一个图片控件,希望通过设置它的src,来引用另外一个页面返回的图片并显示出来,但不成功。如何处理?
a.htm:
<img id="img1" src="xxx.aspx?id=1" width="219" height="334" style="cursor: hand">xxx.aspx:
private void Page_Load(object sender, System.EventArgs e)
{
Response.Write("hunt.jpg");
Response.End();
}请指点,不胜感激。