嵌套DIV是动态的 [英] nested DIV's dynamically

查看:81
本文介绍了嵌套DIV是动态的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何从vb端动态添加嵌套DIV

需要这个来自vb端的构建:



How do I add nested DIV's dynamically from the vb side
Need this his to build from the vb side:

<div class="wrapper">
                
                <div class="container-fluid">
                    <div id="heading" class="page-header">
                    </div>
                    <div class="row-fluid">
                        <div class="span13">
                            <div class="widget">
                                <div class="widget-title">
                                    <div class="icon"></div>
              </div>
                              
                                <div class="widget-content">
                                    <div id="chart5_div" class="chart"></div>
                     
                                    
                                    <div class="clearfix"></div>
                                </div>
                             
                            </div>
                    
                        </div>
                       
                    </div>
                   
                  
                </div>
               
            </div>





谢谢



Thank you

推荐答案

根据JoCodes的要求:)



看起来很好,除了你要把所有内容添加到 PlaceHolder1.Controls 集合,所以你没有嵌套div。每个 HtmlGenericControl [ ^ ]将拥有自己的控制 [ ^ ]集合,因此可以将子元素添加到其中。例如:

As per request from JoCodes :)

Looks fine, apart from the fact you're adding everything to the PlaceHolder1.Controls collection, so you're not nesting the divs. Each HtmlGenericControl[^] will have its own Controls[^] collection, so child elements can be added to that. For example:
Dim div1 As New System.Web.UI.HtmlControls.HtmlGenericControl("DIV")
div1.Attributes("Class") = "row-fluid"
PlaceHolder1.Controls.Add(div1)

Dim div2 As New System.Web.UI.HtmlControls.HtmlGenericControl("DIV")
div2.Attributes("Class") = "span13"
div1.Controls.Add(div2) ' Instead of adding this div to the PlaceHolder1 control, add it to div1.


这篇关于嵌套DIV是动态的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆