• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

嵌套DIV是动态的

用户头像
it1352
帮助1

问题说明

如何从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

正确答案

#1
根据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.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcecbkc
系列文章
更多 icon
同类精品
更多 icon
继续加载