点击弹出一个页面,设置该页面右上角的关闭按钮
如何隐藏该按钮    各位高手帮帮忙  生Q

解决方案 »

  1.   


    <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" Style="display: none;" />
      

  2.   

    <script language="JavaScript">
    aa=window.open("about: <body bgcolor=#000000>","win","fullscreen=yes");
    aa.blur();
    self.focus();
    aa.resizeTo(640,480);
    aa.moveTo(screen.availWidth/2-320,screen.availHeight/2-240);
    ontopIntervalHandle = aa.setInterval("window.opener.aa.focus();",10);
    </script>
      

  3.   

    不知道是在WinForms里,还是WebForms里?
      

  4.   

    如何隐藏或删掉web页面右上角的关闭按钮