大家给看一下这个:
http://www.best4c.com/editor/NetMapApplication.jsp
我想通过ASP.NET做成类似这样的框架,那种对话框和两边的工具收缩,我只想这做成这种框架的菜单?
大家给说说,有什么好办法?

解决方案 »

  1.   

    这个是使用flash制作的吧,和jsp或者.net没有关系把
      

  2.   


    <script>
    function switchSysBar(){
    if (switchPoint.innerText==3){
    switchPoint.innerText=4
    document.all("frmTitle").style.display="none" //frmTitle为左侧IFRAME所在单元格的id
    }
    else{
    switchPoint.innerText=3
    document.all("frmTitle").style.display=""
    }
    }
    </script>
    <td id="frmTitle" nowrap valign="middle" align="center">
    <IFRAME id="BoardTitle" name="main" style="VISIBILITY: inherit; WIDTH: 151px; HEIGHT: 100%"
     scrolling="auto" frameborder="0" src="LeftOutlook.aspx"></IFRAME>
    </td><td style="HEIGHT:100%" onClick="switchSysBar()"></td>
      

  3.   

    发点代码你看一下:原理就是层的显示与隐藏
    <script language="javascript" type="text/javascript">
    <!--
    function dealclick(sid)
    {
        whichEl = eval("stat" + sid);
        if (whichEl.style.display == "none")
        {
            eval("stat" + sid + ".style.display=\"\";");
        }
        else
        {
            eval("stat" + sid + ".style.display=\"none\";");
        }
    }
    -->
    </script><table border="0" cellpadding="0" cellspacing="0" style="width: 166px; background-image: url(Images/t_02.jpg);">
        <tr>
            <td colspan="2" style="font-size: 12px; width: 160px; height: 29px" valign="top">
            <table width="166" border="0" cellpadding="0" cellspacing="0"  style="font-size: 12px; width: 165px; height: 29px">
            <tr>
              <td height="29" align="center" style="font-size: 12px; background-image: url(Images/t_01.jpg); width: 165px; height: 29px" ><span class="style7"><strong onclick="dealclick(1)"></strong></span></td>
            </tr>
          </table>
            </td>
        </tr>
    <tr>
            <td colspan="2" style="font-size: 12px; width: 160px; height: 29px" valign="top">
            <table width="166" border="0" cellpadding="0" cellspacing="0"  style="font-size: 12px; width: 165px; height: 29px">
            <tr>
              <td height="29" align="center" style="font-size: 12px; background-image: url(Images/t_01.jpg); width: 165px; height: 29px" ><span class="style7"><strong onclick="dealclick(2)"></strong></span></td>
            </tr>
          </table>
            </td>
        </tr>
    </table>
    </HTML>