I am beginner in programing. I would like to add dinamically Label (control) to div (col-2). In *.aspx I have:
<div class="article">
...
<div class="col-2">
...
</div>
</div>
and in *.aspx.vb I have:
Dim LT11 As New Label
...
LT11.Text = "Hello World"
Controls.Add(LT11)
But Label LT11 appears at the end of Webpage not inside <div class="col-2">
Have you got any idea how to place it inside DIV