再次请教
window.history.back()
只能使整个窗体回退,不能只是使某个IFrame回退

解决方案 »

  1.   

    就用 javascript函数 history.back()
      

  2.   

    response.write("<script>history. back()</script>")
    response.write("<script>history. go(-1)</script>")
      

  3.   

    问题是在微软的Toolbar中的按钮事件后
    用Response.Write("<script>history.back();</script>");
    就是只能使整个窗体回退,不能只是使某个IFrame回退
      

  4.   

    history.back(-1);
    history.go(-1);
      

  5.   

    <table> 
     <tr>
       <td>
         <input onclick="window.frames['MainFrame'].history.back()">
       </td>
     </tr>
     <tr>
      <td>
        <iframe name="MainFrame" src="http://dotnet.aspx.cc/"></iframe>
      </td>
     </tr>
    </table>