你一个thing.asp文件想占两个帧的地方,估计行不通

解决方案 »

  1.   

    我的代码:
    ===========UntitledFrameset-1.htm===============
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    </head><frameset rows="101,365" cols="*"> 
      <frame src="Untitled-1.htm">
      <frameset cols="119,661" rows="*"> 
        <frame src="UntitledFrame-1.htm">
        <frameset rows="107,252" cols="*"> 
          <frame src="UntitledFrame-2.htm">
          <frameset cols="128,527" rows="*"> 
            <frame src="UntitledFrame-3.htm">
            <frame src="UntitledFrame-4.htm">
          </frameset>
        </frameset>
      </frameset>
    </frameset>
    <noframes><body bgcolor="#FFFFFF" text="#000000"></body></noframes>
    </html>
    ===============Untitled-1.htm===========
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    </head><body bgcolor="#FFFFFF" text="#000000">
    T1titlelist 
    </body>
    </html>
    =================UntitledFrame-1.htm============
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    </head><body bgcolor="#FFFFFF" text="#000000">
    T1leftlist 
    </body>
    </html>
    ================UntitledFrame-2.htm================
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    </head><body bgcolor="#FFFFFF" text="#000000">
    <p>T2titlelist </p>
    <p>按钮Submit触发thing.asp,使thing.asp程序的界面满屏,覆盖到T1leftlist,T2titlelist,T2rightlist,T2leftlist,当事件处理完成之后,恢复原状态。</p>
    </body>
    </html>
    =======================UntitledFrame-3.htm=================
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    </head><body bgcolor="#FFFFFF" text="#000000">
    T2leftlist 
    </body>
    </html>
    =================UntitledFrame-4.htm=================
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    </head><body bgcolor="#FFFFFF" text="#000000">
    T2rightlist 
    </body>
    </html>
    我很急!!!!!拜托了!!!!1
      

  2.   

    呵呵,试试这样。
    一个方法是把你的frame分开来写,不要写成一个文件,这样就可以用你现在的文件
    替换你原来的其中一个frame(leftlist和rightlist)页面.
    比如:
    ========最外层========
    <frameset rows="101,365" cols="*"> 
       <frame src="top.htm">
       <frame src="page.htm">
    </frameset>=======page.htm=======
    <frameset cols="101,365" cols="*"> 
       <frame src="left.htm">
       <frame src="right.htm">
    </frameset>
    还有一个方法就是在替换页面的时候,可以是leftlist和rightlist任意其中一个,令另一个的宽度为0, 比如 frame[n].cols="0,527";