gpt4 book ai didi

c# - 如何以编程方式将 UpdatePanel 控件添加到页面?

转载 作者:行者123 更新时间:2023-11-30 14:16:27 24 4
gpt4 key购买 nike

我使用 asp.net 4 和 c#。我想在我的页面上使用 AJAX 控件 UpdatePanel。

我在文档中读到

UpdatePanel controls can be added declaratively or programmatically. 

但我找不到任何有关如何以编程方式在页面上添加 UpdatePanel 控件的信息。

我的问题:如何以编程方式将 UpdatePanel 控件添加到页面?(请注意,我需要在 Web 窗体上添加实际的更新控件,而不是在 UpdatePanel 中添加控件)非常感谢!

最佳答案

 protected override void OnInit(EventArgs e)
{

UpdatePanel updatePanel = new UpdatePanel();
//updatePanel.ContentTemplateContainer.Controls.Add(linkButton); if want to add control in UpdatePanel
form1.Controls.Add(updatePanel);
base.OnInit(e);
}

更多:

Dynamically Adding an UpdatePanel to Your Page

http://asp.net/AJAX/Documentation/Live/mref/C_System_Web_UI_UpdatePanel_ctor.aspx

关于c# - 如何以编程方式将 UpdatePanel 控件添加到页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7525525/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com