c#.net打开新的小页面
发布网友
发布时间:2024-10-24 18:19
我来回答
共4个回答
热心网友
时间:1天前
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />页面上的按钮
.cs文件
protected void Button1_Click(object sender, EventArgs e)
{
Response.Write("<script>");
Response.Write("window.open('default.aspx','','width=500,height=500')");
Response.Write("</script>");
}
如果不行 肯定是你电脑里阻止弹出窗口了.
热心网友
时间:1天前
晕……Web 2.0了,用弹出层多好!还有服务器控件性能值得怀疑!!!
IE Dialog 过时了!
热心网友
时间:1天前
可以啊
热心网友
时间:1天前
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Page1</title>
<script>
function test()
{
window.open('default.aspx','','width=500,height=500')
}
</script>
</head>
<body>
<button onclick="test();">Click me</button>
</body>
</html>
如果前台用asp.net控件,那么保留前面的JavaScript,然后可以在这个button的点击事件里,这么写:
Response.Write("<script>test();</script>");
这样就可以去调用javascript里的test()