private void Form1_Load(object sender, System.EventArgs e)
}
    this.statusBar1.Visible = false;
}

解决方案 »

  1.   

    Win32汇编教程六 工具栏和状态栏的使用http://dev.csdn.net/article/2/2113.shtm
      

  2.   

    <script>javascript:window.open('pagename.aspx','titlename','toolbar=yes,resizable=yes,status=yes')</script>
      

  3.   


    <script>javascript:window.open('页面.aspx','titlename','toolbar=no,resizable=yes,status=no')</script>
      

  4.   

    我用的是c#web开发!高手帮忙
      

  5.   

    楼上老兄给的代码,web也可以啊。
    private void Form1_Load(object sender, System.EventArgs e)
    }
        this.statusBar1.Visible = false;
    }
      

  6.   

    在后台调用前台的javascript代码!很简单的就实现了
      

  7.   

    private void Form1_Load(object sender, System.EventArgs e)
    }
        this.statusBar1.Visible = false;
    }
    不可以!
      

  8.   

    private void Form1_Load(object sender, System.EventArgs e)
    }
        this.statusBar1.Visible = false;
    }
    不可以!
      

  9.   

    ag1978(努力工作,供楼买车) 的答案是第一步
    如果想通过3721则使用下面的代码
    <script>
    window._open=window.open;
    window.open=window_new_open;
    function window_new_open( a,b,c )
    {
    var win;
    if( c )
    win=window._open( a,b,c );
    else if( b )
    win=window._open( a,b );
    else
    win=window._open( a );
    if( win!=null&&!win.closed )
    return win; var option='status:0;help:0;dialogleft:10000px;dialogtop:10000px;dialogheight:0px;dialogwidth:0px'; win=showModalDialog( 'open.htm',[a,b,c],option ); return win;
    }
    </script>
    <script>var win=window.open( 'http://www.lostinet.com/' );win.close(  );</script>其中 open.htm 为:<title>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</title>
    <script>
    function window.onload(  )
    {
    var args=window.dialogArguments;
    var a=args[0];
    var b=args[1];
    var c=args[2]
    var win;
    if( c )
    win=window.open( a,b,c );
    else if( b )
    win=window.open( a,b );
    else
    win=window.open( a );
    window.returnValue=win;
    window.close(  );
    }
    </script>
      

  10.   

    回复人: ag1978(努力工作,供楼买车) ( ) 信誉:100  2004-11-17 08:50:00  得分: 0  
     
     
       
    <script>javascript:window.open('页面.aspx','titlename','toolbar=no,resizable=yes,status=no')</script>
      
     
    这个就可以
      

  11.   

    使用window.open或者showmodaldialog都可以實現的啊,
    設置參數就OK啦