从框架页中一个页面刷新框架页中的另一个页面怎么做呀 !
哪位做过给指点一下,麻烦说细点

解决方案 »

  1.   

    用javascript
    parent.B.refresh注:B为所要刷新页面。
      

  2.   

    <script language=javascript>self.parent.location.href='B.aspx'</script>
    这样也可以。
    B.aspx:为刷新页面。
      

  3.   

    System.Random Rd =  new Random();
    string ScriptKey = "Script" + Rd.Next(999999).ToString();
    Page.RegisterStartupScript(ScriptKey,"<script>parent.window.frames["另一个框架的ID"].location=parent.window.frames["另一个框架的ID"].location;
    </script>");
      

  4.   

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>无标题文档</title>
    </head><frameset rows="80,*" cols="*"  frameborder="NO" border="0" framespacing="0">
      <frame src="UntitledFrame-2.htm" name="topFrame" scrolling="NO" noresize>
      <frameset rows="*" cols="198,*" framespacing="0" frameborder="NO" border="0">
        <frame src="UntitledFrame-3.htm" name="leftFrame" scrolling="NO" noresize>
        <frame src="Untitled-1.htm" name="mainFrame">
      </frameset>
    </frameset>
    <noframes><body>
    </body></noframes>
    </html>
      

  5.   

    Untitled-1.htm<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>无标题文档</title>
    </head>
    <script>
    function a()
    {
    parent.frames["leftFrame"].location.href='123'
    }
    </script>
    <body>
    <input type="button" name="bun1" value="提交" onClick="a()">
    </body>
    </html>