这样的提交怎样实现?
tdxue 2003-12-22 03:01:56 1.html
<html>
<body>
<form name="form1">
<input type=hidden name="place" value=1>
<input type="button" value="确定">
</form>
</body>
</html>
main.html
<html>
<frameset cols="20%,*">
<frame name="frame_left" target="frame_right" src="2.asp">
<frame name="frame_right" src="3.html">
</frameset>
</html>
现在想在1.html点击"确定"按钮时,调出main.html,并且把隐藏变量"place"的值传给2.asp
请问怎样实现?