注册 登录
编程论坛 ASP技术论坛

请教高手,这段代码怎么样,能在新窗口打开

abc334421 发布于 2011-07-28 16:59, 362 次点击
response.Write "<script>alert(""订单提交成功,点确定查看您的订单信息,谢谢合作!"");location.href='xxx.asp';</script>"
这段代码,是一个弹出框代码,我想点击确定后,打开一个新窗口,应该怎样加呢

[ 本帖最后由 abc334421 于 2011-7-28 17:02 编辑 ]
1 回复
#2
fanshuai20112011-07-29 09:16
新建一个xxx.asp,文件将下面代码放进去
<html>
<body>
<%
response.write "<a href= http://www.baidu.com >超级连接</a>"
%>
</body>
</html>
1