62,254
社区成员
发帖
与我相关
我的任务
分享Button Button1 = new Button();
Button1.Text = "Button 1";
PlaceHolder1.Controls.Add(Button1);
Literal Literal1 = new Literal();
Literal1.Text = "<br>";
PlaceHolder1.Controls.Add(Literal1);
Button Button2 = new Button();
Button2.Text = "Button 2";
PlaceHolder1.Controls.Add(Button2);