asp.net - Adding html to a placeholder control on the fly -
i generic markup load @ runtime froma file follows:
<div id="pagewidth" > <div id="header" > head </div>         <div id="wrapper" class="clearfix" >          <div id="twocols" class="clearfix">              <div id="column2" > main content column </div>             <div id="column3" > right column </div>         </div>          <div id="column1" > left column </div>   footer
i want add place holder control in asp.net web page. how do it?
add html string asp:literal control , add literal control placeholder's control collection.
Comments
Post a Comment