当前位置: 代码迷 >> ASP.NET >> window.open有关问题
  详细解决方案

window.open有关问题

热度:7635   发布时间:2013-02-25 00:00:00.0
window.open问题
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
  相关解决方案