render controls in div at run time?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ahmed naguib
    New Member
    • Feb 2012
    • 1

    render controls in div at run time?

    i have atext from jquery method :

    Code:
    <fieldset>
    <ul id="ContentPlaceHolder2_1g" class="profList column ui-sortable">
    <legend class="group">المجموعه 1</legend>
    <li id="ContentPlaceHolder2_8">محمود حسن ابراهيم عبد الصمد</li>
    </ul></fieldset>
     
    
     
    <fieldset>
    <ul id="ContentPlaceHolder2_2g" class="profList column ui-sortable">
    <legend class="group">المجموعه 2</legend><
    li id="ContentPlaceHolder2_9">محمود فتحى ابراهيم عبد الصمد</li>
    <li id="ContentPlaceHolder2_10">احمد محسن احمد على</li>
    <li class="" style="" id="ContentPlaceHolder2_3">احمد درويش محمود عباس</li>
    </ul></fieldset>
     
    
     
    
    <fieldset>
    <ul id="ContentPlaceHolder2_3g" class="profList column ui-sortable">
    <legend class="group">المجموعه 3</legend>
    <li id="ContentPlaceHolder2_11">محمد سيد محمد سيد</li>
    </ul>
     
    </fieldset>
    i retrieve this htmltext in variable in c# ok then i have div in my aspx

    Code:
    <div id="ulAndil" runat="server" ></div>
    i want to render these html in div and loop through these controls like ul an il all this in one method at run time
Working...