在一个文件中有
<script language="JavaScript" type="text/JavaScript">
function MM_openBrWindow(theURL,winName,features)
{ //v2.0
window.open(theURL,winName,features);
}
<% response.write objwishinfo %>
<td><input name="submit" type="button" onClick="MM_openBrWindow(reply.asp,xxxx,width=600,height=200)" value="回复">
qi请问我怎么将objwishinfo 这个值传给新开的reply.asp页面,谢谢大家
<td><input name="submit" type="button" onClick="MM_openBrWindow(reply.asp?sendstr=<%=objwishinfo%>,xxxx,width=600,height=200)" value="回复">
在reply.asp中
用request.QueryString("sendstr")取得objwishinfo的值