请用过三楼楼长老兄oa系统的大侠帮一下忙,谢谢!
我在下面的网址下载了此oa系统学习,网址为 
http://blog.cmzone.net/?module=download
我把内面的一名为dbbak的数据库文件导入sql sever2000 中后,我用IIS予览Index.aspx,再输入用户名Admin 密码 0后,登录进入主界面,我想在主界面中出现地址栏和菜单栏,请问我应该改动哪个文件的什么代码才行啊?谢谢了!

解决方案 »

  1.   

    把\UDS\SubModule\ScheduleVerifySignIn.aspx 里面的,下面一代JAVASCRIPT代码改一下就行了!
    <script language="javascript">
    function opennew()
    {
    if (parent.frames.length==0)
    {
    var udswin=window.open("../Index.aspx","","toolbar=yes,status=yes,resizable=yes");
    udswin.moveTo(0,0);
    udswin.resizeTo(window.screen.availWidth,window.screen.availHeight);

    }
    window.opener = null;
    window.close();
    }
    </script>
    把上面一段改成:var udswin=window.open"../Index.aspx","","toolbar=yes,status=yes,resizable=yes,menubar=yes,location=yes");
    就可以了
      

  2.   

    不是所有的都改,是把var udswin=window.open("../Index.aspx","","toolbar=yes,status=yes,resizable=yes");改成:
    var udswin=window.open"../Index.aspx","","toolbar=yes,status=yes,resizable=yes,menubar=yes,location=yes");
    就可以了
      

  3.   

    打错了,少了一个括号,改成:var udswin=window.open("../Index.aspx","","toolbar=yes,status=yes,resizable=yes,menubar=yes,location=yes");