这是我按钮的代码。我希望配置按钮在单击时显示弹出窗口。我查了一下,尝试了很多不同的代码,但没有一个有效。我觉得我错过了一个关键组件,但我不确定那是什么。感谢帮助!
tr = new TableRow();
// Create the cell
tc = new TableCell();
tc.Width = Unit.Point(300);
tc.BorderWidth = 0;
tc.BorderStyle = BorderStyle.None;
Button ConfigButton = new Button();
ConfigButton.Text = "Configuration";
ConfigButton.Visible = true;
tc.Controls.Add(ConfigButton);
tr.Cells.Add(tc);
tbl.Controls.Add(tr);
答案 0 :(得分:0)
Using JavaScript Along with ASP.NET您将执行以下操作:
// when you create the button, you can add attributes
Button ConfigButton = new Button();
// this example will display alert dialog box
ConfigButton.Attributes.Add("onclick", "javascript:alert('ALERT ALERT!!!')");
// to get you popup windows
// you would use window.open with the BLANK target
ConfigButton.Text = "Configuration";
ConfigButton.Visible = true;
答案 1 :(得分:0)
我建议使用AJAX Control Toolkit ModalPopupExtender。这就是我用于ASP.NET中弹出窗口的内容。
这是一个指向AJAX Control Toolkit示例网站的链接,显示了此控件的工作原理: http://www.ajaxcontroltoolkit.com/ModalPopup/ModalPopup.aspx