怎么才能一开网页就能去掉菜单栏,工具栏呢?不是window.open哦 
我想做一个登陆的页面,当验证成功后在本页直接显示,但是要去掉菜单栏,工具栏,不知道怎么去,请能帮我下吗,谢谢!····不能用window.open哦,谢谢

解决方案 »

  1.   

    那你可以做一个default.asp然后由该页面window.open你的登录页面,类似
    <html>
    <head>
    <title>登录</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <script language="JavaScript" type="text/JavaScript">
    function omiga_window()
    {
    var w=screen.availWidth-10;
    var h=screen.availHeight-25;
    window.open("logon.aspx","HL5","toolbar=0,menubar=0,statusbar=0,resizable=0,width="+ w +",height="+ h +",left=0,top=0",false);
    }
    function Closef()
    {
    self.opener=null;
    self.close();
    }
    </script></head>
    <body onload="omiga_window();Closef();">
    </body>
    </html>
    然后你登录成功之后就可以用
    Response.Redirect到你要显示的页面就行了