我有asp.net web应用程序,其中动态生成一个按钮,我想在该按钮点击事件上打开弹出页面或面板。
我尝试以下代码但不起作用:
protected void Test_Click(object sender, EventArgs e){
OpenNewWindow("test.aspx");
}
public void OpenNewWindow(string url)
{
ClientScript.RegisterStartupScript(this.GetType(), "newWindow", String.Format("<script>window.open('{0}');</script>", url));
}
答案 0 :(得分:1)
试试这个:
将属性添加到动态创建的按钮
Button1.Attributes.Add( "onclick", "javascript:window.open('http://www.google.com');" );