how to add a div to container div in c# code behind

前端 未结 5 1574
慢半拍i
慢半拍i 2020-12-17 09:18

ASP.NET, C#

As the title suggests I was wondering if anyone knew how to programatically (c# code behind file) add a div to another a container div (in the aspx page)

5条回答
  •  抹茶落季
    2020-12-17 09:33

    Panel myChildPanel = new Panel();
    myContainerPanel.Controls.Add(myChildPanel);
    

提交回复
热议问题