string ImgPath=((System.Web.UI.WebControls.Image)e.Item.FindControl("Image2")).ImageUrl;
string url=@"http://localhost/MCD/"+ImgPath;
Response.Redirect(url);
这样可以定向到一个显示图片的页面,
换成Response.Write("<script>window.open('"+url+"')</script>");
虽然可以弹出新页面,但不能显示图片,而且地址栏有乱码:
http://localhost/MCD/Image.jpg
http://localhost/MCD/Image.jpg
找不到网页
正在查找的网页可能已被删除、重命名或暂时不可用。
怎么回事呢?
------解决方案--------------------------------------------------------
Response.Write(" <script>window.open('ImgPath') </script>"); 把url换成ImgPath