I've created an object of HTMLTable. I am dynamically adding rows w/ cells to the table. I would now like to place this HTMLTable object on my page. In what way do I do this? Any thoughts would be most appreciated.
Assumptions, more detail: You mention "page" and HTML, so I assume you're coding an ASP.NET page? If so, then you can use the JavaScript DOM and the "innerHTML" property to write any HTML into a block-level element, such as a DIV tag.
If you want to do it the "ASP.NET" way, then start with a PlaceHolder object on the WebForm. Then, use its "Add" method to replace it with your Table.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.