1

我有一个常规页面。当我单击一个按钮时,它将在该页面中打开,并带有一些 asp 控件。我需要的是我想在弹出页面中打开那个页面,里面有关闭按钮。我搜索了但我没有找到合适的鳕鱼。有谁能够帮助我?谢谢 在此处输入图像描述

4

5 回答 5

1

您可以在 javascript 中使用 windows.open。

    <html>
    <body>

    <script type="text/javascript">
function windowOpen() {
    myWindow=window.open('http://myurl.com','_blank','width=200,height=100, scrollbars=no,resizable=no')

    myWindow.focus()
}
    </script>
    <input type="button" value="Open Window" onclick="windowOpen()">
    </body>
    </html>
于 2012-12-25T15:17:43.933 回答
1

在你的函数之前使用 return

 <html>
<body>

<script type="text/javascript">
  function windowOpen() {
      myWindow=window.open('http://myurl.com','_blank','width=200,height=100, scrollbars=no,resizable=no')
      myWindow.focus()
      return false;
  }
</script>
<asp:button id="btnClick" text="Open Window" onClientClick="return windowOpen()">
</body>
</html>
于 2012-12-25T16:26:01.720 回答
1

使用下面的代码

ClientScript.RegisterStartupScript(typeof(Page), "MessagePopUp", "window.location.href = 'Home.aspx';", true);

于 2012-12-26T09:12:47.133 回答
1
<script type="text/javascript">
    function OpenPopup() {

       window.open("ProductClass.aspx", "List", "toolbar=no, location=no,status=yes,menubar=no,scrollbars=yes,resizable=no, width=900,height=500,left=430,top=100");
        return false;
    }
</script>

于 2013-12-07T04:40:30.617 回答
0

大家好,请使用以下代码

function ShowPopup() {
        $("#panOne").dialog({
            autoOpen: true,
            appendTo: "form",
            height: 600,
            width: 900
        });
    }

appendTo"form"很重要,就好像你不使用它autopostback一样

于 2017-12-05T10:19:50.650 回答