VS 中aspx網頁中如何分割頁面,也就是把頁面分成幾個區域?比如說 :頁面分為上面一小部分是頭,左邊一小部分是目錄,右下部分是主要的顯示區域?怎么分啊?

解决方案 »

  1.   

    iframe frameset =================
      

  2.   


    <frameset id="top" rows="93,*,34" border="0" frameborder="0" frameSpacing="0">
    <frame id="head" frameborder="0" src="xxx" scrolling="no" marginheight="0"
    marginwidth="0">
    <frameset id="body" cols="280,10,*" border="0" frameborder="0">
    <frame id="menu" name="menu" frameborder="0"  src="<%=URL%>"  scrolling="auto"
    marginheight="0" marginwidth="0">
    <frame id="splitor" frameborder="0" src="Splitor.aspx" scrolling="no" marginheight="0"
    marginwidth="0">
    <frame id="workspace" name="workspace" frameborder="0" src="Workspace.aspx" scrolling="auto"
    marginheight="0" marginwidth="0" >
    </frameset>
    <frame id="foot" frameborder="0" src="Copyright.aspx" scrolling="no" marginheight="0" marginwidth="0">
    </frameset>