Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在创建动态页面时遇到问题。我需要创建动态表,因为该表包含两个文本框和一个按钮。我创建并在字符串生成器的帮助下显示。
我想要的是我需要为动态创建的按钮编写 C# 代码。是否可以附加服务器按钮?当我单击动态创建的按钮时,它应该转到后面的代码。
sb.append("<input type='Button' runat='server' onclick='Myfun()'");
如果是 asp.net webforms,您可以这样做:
Button mybutton = new Button(); mybutton.Click += new EventHandler(Mybutton_Click); container.Controls.Add(mybutton);
确保将其添加到 OnInit 方法中。