View Single Post
Old 09-09-2004, 12:59 AM   #21
ashish
TopHosts Senior Member
 
Join Date: Jul 2004
Posts: 108
ashish will become famous soon enough
Default Re: Basic Information about ASP.NET

Hey everyone,

Just finishing off the rest of the HTML server controls.

HtmlTable - Controls the <table> HTML element, allows you to customise a HTML table on a page by giving access to various table properties like background colour, border colour, visibility, inner html etc. etc. this control is normally used in conjunction with the table row and table cell control.

HtmlTableRow - Controls the <tr> HTML element, after creating the table, you need to put rows into it and then you place the data in a cell of that row, the HtmlTableRow is used after the HtmlTable control and allows you to manipulate the rows in a table by giving access to various properties like the background colour of the table row, its height etc.

HtmlTableCell - Controls the <td>and <th> HTML tags. This is the last of the table controls in HTML controls, this control is normally used after the HtmlTableRow control has been used i.e. this one manipulates the actual data inside a cell, this too gives access to cell properties like background colour, alignment etc.

HtmlTextArea - Controls a <textarea> HTML tag. Manipulates the multi line textbox crated using the <textarea> tag. you can adjust the height and width of the textarea etc.

Any suggestions/corrections/comment welcome

Some information from www.411asp.net & www.w3schools.com
__________________
Cheers,
Ashish
M6.Net - ASP Hosting, ASP.Net Hosting
ashish is offline   Reply With Quote