这个问题的具体情形是:要从一个没有分帧的页面转到一个分帧的页面,而且要传递参数。实际操作中虽然页面效果实现了,但是参数没有传递成功。无奈只有用这种后退方法:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<FORM>
<input type=button value="Go Back"
onClick="history.back(-1)" >
</FORM >
</div>
</form>
</body>
</html>