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.
如何在 pageload() 事件中创建动态页面,以及如何在按钮单击事件或任何其他事件中调用文本框或单选按钮等值?
请举一个小例子。提前致谢!
您可以动态创建创建任何 ASP.NET 控件并将它们添加到页面。
文本框 txtBox = new TextBox();
如果您必须在回发中访问这些值。那么在 Page_Init() 中创建它们比在 Page_Load() 中创建它们更好。如果您正在创建一个动态元素,那么您必须在每次回发时创建它们。
有一些关于这些主题的好文章。谷歌他们