如何向 ASP.NET 表单动态添加控件?
我不知道如何使用 C# .net 将控件动态添加到表单中。有人可以帮助我吗?我知道 vb.net 的这一点,但我需要知道 C# 中的语法。
I do not know how to add controls dynamically to the form using C# .net. Can anyone help me? I know this with vb.net but I need to know the syntax in C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
在表单中,以下代码可以动态添加按钮:
In the form, the following code can add a button dynamically:
在 Aspx 中,
U 可以在 Cs 文件中使用以下内容动态地加载控件...
或者尝试这个
也可以看看:
http://aspalliance.com/565
http://samuelmueller.com/2008/12/dynamicloader-plugin-dynamically-loading-asp-net-user-controls-with-jquery
http://forums.asp.net/p/1222567/2826338.aspx
In Aspx
U can use the following in the Cs file to laod the control dynamically...
or try this
Can also have a look at:
http://aspalliance.com/565
http://samuelmueller.com/2008/12/dynamicloader-plugin-dynamically-loading-asp-net-user-controls-with-jquery
http://forums.asp.net/p/1222567/2826338.aspx
下面是动态添加控件到 ASP.NET 表单的代码。
Below is the code to add controls dynamically to ASP.NET form.
请参阅下面的示例,
假设表单名称为 frmMain。
Please see the below sample
lets say forms name is frmMain.
下面是可以在某些事件(如页面加载或 onload)甚至某些用户操作(如 onclick)上调用的代码。
Below is the code that can be called on some events like page load or onload or even some user action like onclick.
将控件添加到面板通常是可以接受的,无论面板是通过标记还是以编程方式添加到页面的。
有关 C# 语法,请参阅以下链接
It's generally acceptable to add the controls to a panel, be it that the panel has been added to the page in the markup or programmatically.
See the following link for the C# syntax