日期:2014-05-18  浏览次数:20477 次

关于框架FramSet的问题!!!
HTML code

<frameset border="0" ID="workflowFrame" framespacing="0" frameborder="yes" rows="25,25,8,*"> 
  <frame name="loginInfo" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" noresize src="Bid_Title.aspx"/>  
  <frame name="ManuPage" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" noresize src="OperateMenuPage.aspx"/> 
  <frame name = "topLineFrame" src="top.htm" frameborder="0" scrolling="no" marginwidth="0" noresize marginheight="0"/>
<frameset ID="mainFrame" border="0" framespacing="0" frameborder="yes" cols="200,8,*">      
  <frame name="leftFrame" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" src="Bid_Table_Dir.aspx"/>     
  <frame name="mainLineFrame" src="line.htm" frameborder="0" scrolling="no" marginwidth="0" noresize marginheight="0" >
  <frame name="rightFrame" frameborder="no" scrolling="auto" marginwidth="0" marginheight="0" src="Bid_Goods_App_Table.aspx"/>  
</frameset>
<noframes>
<body>
<p>此网页是使用了框架,但你的网页不支持框架!!</p>
</body>
</noframes>
</frameset>


这是我的框架,其中ManuPage框架所指向的aspx页面里有几个LinkButton,
我想每次点击LinkButton时,刷新mainFrame!!!!
怎么做歇息

------解决方案--------------------
给MianFrme起个名字 然后 link的 target="名字"
这里没有必要用linkbutton用链接就可
------解决方案--------------------
赞同楼上

------解决方案--------------------
探讨
给MianFrme起个名字 然后 link的 target="名字"
这里没有必要用linkbutton用链接就可

------解决方案--------------------
快升星儿的人了,还问这种问题么?此帖意在散分?
------解决方案--------------------
二楼正解
------解决方案--------------------

<a href="MyTest_FindApper.aspx" target="rightFrame">配置管理页 </a> 


------解决方案--------------------
JScript code

function ShowLayer()
           {
                document.all.MyFormLayer.style.display="block";
                return false;
            }
            function SetURL(url)
            {
                document.all.IFRAME1.src=url;
            }
            
            function btnBorrow_onclick() 
           {
             SetURL("../BorrowOtherRation/ChooseTx.aspx");
             ShowLayer();
           }

------解决方案--------------------
为什么不用mastpage
------解决方案--------------------
学习+关注。。
------解决方案--------------------
探讨
学习+关注。。