设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 88|回复: 5
打印 上一主题 下一主题

关于打开新窗口传值的问题

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-7 03:30:17 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
因为我是用的imageButton,我想实现点击图片按钮就在新窗口里打开.有没有设置target="_blank"的方法.
或者
Response.Redirect("ImgNews.aspx?ImgID=" + ImgID);
改成下列的,如何传参?谢谢!我想用下列的方式传递ImgID
Response.Write("<script>window.open('ImgNews.aspx'); </script>");
2#
发表于 2010-1-7 03:30:19 | 只看该作者
Response.Write("<script>window.open('ImgNews.aspx?ImgID=" & ImgID & "'); </script>");
这样写不行,发生下列错误
错误 13 运算符“&”无法应用于“string”和“int”类型的操作数 E:\Visual Studio 2005\netEduSystem\admin\AdIndex.aspx.cs 41 24 E:\Visual Studio 2005\netEduSystem\
我换成//Response.Write("<script>window.open('ImgNews.aspx?ImgID='" + ImgID +"''); </script>");也不行.高人指点呀
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-7 03:30:22 | 只看该作者
楼上的应该可以.
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-7 03:30:25 | 只看该作者
Response.Write("&lt;script&gt;window.open('ImgNews.aspx?ImgID="&amp;ImgID&amp;"'); &lt;/script&gt;");
回复 支持 反对

使用道具 举报

5#
发表于 2010-1-7 03:30:28 | 只看该作者
那你可以换种方法试一下
把这个Response.Write("<script>window.open('ImgNews.aspx?ImgID=" & ImgID & "'); </script>");
分开写
就是不用Response.Write
写成<script>window.open('ImgNews.aspx?ImgID=ImgID'); </script>
当然上面的要用%>结束



或者你可以直接按照老方法试一下
<a href="ImgNews.aspx?ImgID=ImgID" target="_blank">图片按钮</a>


如果都不行,偶也没招了.
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 18:41 , Processed in 0.071649 second(s), 8 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表