在asp.net的另一个窗口顶部打开一个窗口

时间:2013-06-07 20:30:29

标签: asp.net

我想在aspx表单上有一个按钮(使用vb.net) 该按钮将打开一个较小的表单,其中一些文字说明了需要完成的内容。 有人有关于如何执行此操作的示例代码吗?

我希望新窗口只是在当前窗口前弹出。 谢谢

2 个答案:

答案 0 :(得分:0)

使用javascript window.open方法带来一个新窗口。

var mywindow = window.open("myhelpPage.html, '', 'status=1,width=700,
                           height=600,scrollbars=1,resizable=1,top=10,left=200');

这将打开一个新窗口。如果你想要任何花哨的模型弹出窗口,那里有很多javascript插件可以做到这一点。我使用了jQuery UI dialogjQModal。插件(这需要页面中的jQuery库)

答案 1 :(得分:0)

有很多选择。您可以包含jQuery UI(http://jqueryui.com/dialog/)并创建一个如下对话框:

<html lang="en">
<head>
   <meta charset="utf-8" />
  <title>jQuery UI Dialog - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css" />
  <script>
  $(function() {
     $( "#dialog" ).dialog();
  });
  </script>
</head>
<body>

<div id="dialog" title="Basic dialog">
  <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>


</body>
</html>