怎样另外打开新页面?
我是在点击按钮后,先保存当前页面的数据,然后在根据一个下拉框的当前值,打开一个新页面,
if request.Form("techcata")="V" then '无线电台站技术资料申请表,传出参数为:技术表类别、申请表主键值、申请表编号
javascript:( window.open "./tztech.asp?tech=V&parentid="&thetime & "&requestno="& requestno,"_blank","height=540,width=640,toolbar=no,status=no,left=50,top=10,scrollbars=yes,resizable=no")
'Response.Redirect "./tztech.asp?tech=V&parentid="&thetime & "&requestno="& requestno
response.Write("parentid:"&thetime)
response.End()
用response.write 只能进入新页面,不能另外打开一个页面。
用window.open 系统提示: 缺少对象: 'window'
要另外打开新页面,window.open的语法该怎么写呢?