M
Martin
Hi,
I need to create the html below with dynamic controls
<span class="myclass">
<h3>text1</h3>
<h4><span>Price <strong>text2</strong> | Duration
<strong>text3</strong></span></h4>
</span>
text1,text2, text3 need to be bound dynamically.
If I was doing this with a non-dynamic asp.net page, I would have something
like
<span class="myclass">
<h3><asp:Label id="lb1"/></h3>
<h4><span>Price <strong><asp:Label id="lbl2"/></</strong> | Duration
<strong><asp:Label id="lbl3"/></</strong></span></h4>
</span>
However it all needs to be dynamic.
I'm not clear either how to generate stuff like h3,h4 by adding child
controls to a parent, or if I set these through the text property, how I
then indicate where I want the label controls to go, relative to the text
I've set.
TIA
Martin
I need to create the html below with dynamic controls
<span class="myclass">
<h3>text1</h3>
<h4><span>Price <strong>text2</strong> | Duration
<strong>text3</strong></span></h4>
</span>
text1,text2, text3 need to be bound dynamically.
If I was doing this with a non-dynamic asp.net page, I would have something
like
<span class="myclass">
<h3><asp:Label id="lb1"/></h3>
<h4><span>Price <strong><asp:Label id="lbl2"/></</strong> | Duration
<strong><asp:Label id="lbl3"/></</strong></span></h4>
</span>
However it all needs to be dynamic.
I'm not clear either how to generate stuff like h3,h4 by adding child
controls to a parent, or if I set these through the text property, how I
then indicate where I want the label controls to go, relative to the text
I've set.
TIA
Martin