adding rows to html table programmatically

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have a HTML file and it already has a HTML table and a few rows created by
default.. however, i would like to add more rows to this table
programmatically
may i know how?
 
1) Use the asp:Table, asp:TableRow, and asp:TableColumn instead of the
standard HTML table tags.
2) Make the each run at the server.
3) Add the necessary protected variables in your code-behind so that the
tables are correctly associated with the variables.

Now you can use properties such as Rows and Columns to add the necessary
structure.
 
Thanks for your reply.
However, the HTML table come in a form of a template.
Is it still possible to access this particular table and add rows to it
programtically?

thanks !
:)
 
Back
Top