c#.net打开新的小页面
window.open('2.aspx','','width=500,height=500')这个好像不行~~请问怎么修改~谢谢bluelotus7-如果我在前台设置一个...
window.open('2.aspx','','width=500,height=500')
这个好像不行~~
请问怎么修改~
谢谢bluelotus7 -
如果我在前台 设置一个 <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
在后台该怎么写 展开
这个好像不行~~
请问怎么修改~
谢谢bluelotus7 -
如果我在前台 设置一个 <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
在后台该怎么写 展开
4个回答
展开全部
<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>");
}
如果不行 肯定是你电脑里阻止弹出窗口了.
.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>");
}
如果不行 肯定是你电脑里阻止弹出窗口了.
展开全部
<!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()
<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()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
晕……Web 2.0了,用弹出层多好!还有服务器控件性能值得怀疑!!!
IE Dialog 过时了!
IE Dialog 过时了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询