Table

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

What is the difference between creating a table using:

System.Web.UI.HtmlControls.HtmlTable

or

System.Web.UI.WebControls.Table

Which one should I use?

Thanks,
Miguel
 
HtmlTable is the ASP.NET HTML representation of a Table. WebControls.Table is
the ASP.NET Server control that represents an HTML table. Most HTML controls
have a corresponding ASP.NET Server control representation. I know it can
sound confusing, but if you take some time to "play" with both versions it
will become abundantly clear what each is and what each does.

--Peter
"Inside every large program, there is a small program trying to get out."
http://www.eggheadcafe.com
http://petesbloggerama.blogspot.com
http://www.blogmetafinder.com
 
Back
Top