从按钮点击事件后面的代码弹出面板

时间:2012-03-01 11:37:54

标签: c# asp.net dynamic popup code-behind

我有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));

}

1 个答案:

答案 0 :(得分:1)

试试这个:

将属性添加到动态创建的按钮

Button1.Attributes.Add( "onclick", "javascript:window.open('http://www.google.com');" );