我有一个常规页面。当我点击一个按钮时,它将在该页面中打开,带有一些asp控件。我需要的是,我想在弹出页面打开该页面,里面有关闭按钮。我搜索但是我没有找到适当的鳕鱼。有谁能够帮我? 谢谢
答案 0 :(得分: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>
答案 1 :(得分: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>
答案 2 :(得分: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>
答案 3 :(得分:0)
使用以下代码
ClientScript.RegisterStartupScript(typeof(Page),“MessagePopUp”,“window.location.href ='Home.aspx';”,true);
答案 4 :(得分:0)
大家好请使用以下代码
function ShowPopup() {
$("#panOne").dialog({
autoOpen: true,
appendTo: "form",
height: 600,
width: 900
});
}
appendTo :"form"
非常重要,如果您不使用autopostback
所有值