有一个my.asp文件,我想在这个文件里通过 response.write 方式来打开一个a.aspx文件,文件的内容为
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>工作考评</title>
</head>
<body>
<div>
<iframe name="I2" onload="top.document.all['I2'].height=I2.document.body.scrollHeight+10"  frameborder=no scrolling="no" src="b.aspx?gh='"+userid+"'" width="100%" height="100%"></iframe>
</div>
</body>
</html>
我想要response.write 打开的浏览器地址栏显示a.aspx,但是把my.asp里的userid传递到a.aspx里的框架页里,请问怎么实现?谢谢