• frameset


    <HTML>
      <HEAD><TITLE> <%=System.Configuration.ConfigurationManager.AppSettings["SystemName"].ToString()%> </TITLE>
      </HEAD>
     <frameset id="mm" border="0" name="mm" frameSpacing="0" rows="" frameBorder="no">
      <frameset id="mm" border="0" name="mm" frameSpacing="0" rows="80,*" frameBorder="no">
       <frame name="top" src="GTop.aspx?<%=strParam%>" noResize scrolling="no" target="middle">
       <frame name="panel" src="Panel.aspx?<%=strParam%>" scrolling="no">
      </frameset>
     </frameset>
    </HTML>

    刷新一个frame
    function refresh() {

                window.parent.frames["panel"].location.reload(); 
            }


    刷新整页
    <a href="GIndex.aspx?<%=strParam %>" target="_parent"><img src="images/icons/home.gif" width="23" height="22"  alt="首页" /></a>

    刷新一个frame
     <a href="#"  onclick="refresh();"><img src="Skins/images/head/btn_Refresh.png" width="23" height="22" alt="刷新" /></a>

    整页全部跳转登陆页
    <a href="StartLogin.aspx"  target="_top"><img src="images/icons/key.gif" width="23" height="22"  alt="注销系统" /></a>

    关闭整个框架
    <a href="javascript:top.close()" ><img src="Skins/images/head/ico_Exit.png" width="23" height="22"  alt="退出系统" /></a>

  • 相关阅读:
    (图论)树的直径
    HDU 4607
    类属性的增删改查
    python内置常用模块
    字典的使用
    元组的使用
    列表的基本函数
    字符串练习题
    python3.7字符串基本函数
    python简单的while语句和if语句的练习
  • 原文地址:https://www.cnblogs.com/gaoshuai/p/2851061.html
Copyright © 2020-2023  润新知