ASP.net怎样做出具有类似Windows下桌面风格的界面,我见过有的网站,或者说是销售管理系统用ASP.net做的,感觉就像在桌面系统中一样,不过仍然在IE中运行,只是IE菜单条,工具栏都没有了,取而代之的是自己的菜单条,工具栏,这是怎么做的?是不是用了ActiveX控件实现的?还是别的技术?有没有专题的文章介绍一下具体的做法?
    小弟是新手,请不吝赐教    肯定有分!                                          谢谢

解决方案 »

  1.   

    小弟说的就是像这个网站的东东,做的挺不错的,前两天看到的
    http://www.szlon.com/请赐教!
      

  2.   

    用CSS 来定义       
    给你一个XP的CSSbody
    {
    background-color: buttonface;
    scroll: no;
    margin: 0px;
    border: none;
    overflow: hidden;
    }.xpTable
    {
    behavior: url(xpTable.htc);
    sortNoneImageUrl: sortBlank.gif;
    sortUpImageUrl: sortUp.gif;
    sortDownImageUrl: sortDown.gif;
    posUpImageUrl: upArrow.gif;
    posDownImageUrl: downArrow.gif;
    position: relative;
        margin: 0px;
        width: 100%;
      font: menu;
    highlightBackgroundColor: #C1D2EE;
    highlightBorderColor: #316AC5;
    color: windowtext;
      cursor: default;
    }
    .xpTable THEAD TD
    {
    border-left: 1px solid buttonhighlight;
    border-top: 1px solid buttonhighlight;
    border-bottom: 1px solid buttonshadow;
    border-right: 1px solid buttonshadow;
    font: menu;
    color: menutext;
    background-color: buttonface;
        cursor: hand;
        padding-top: 0px;
        padding-bottom: 1px;
    }
    .xpTable TBODY TR
    {
    color: windowtext;
    background: window;
    }
      

  3.   

    http://www.hualine.com/win2000/default.html
      

  4.   

    去asp.net网站看看,那里有篇文章讲的就是这个东西
    不过是E文的,有些名词我也没整明白
      

  5.   

    那是html和css弄的,根vs关系不大