table vs table

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

Guest

hey all,

what is the difference between the table on the webform toolbar and the html
table? when would you want to use the webform table control?

thanks,
rodchar
 
I've found that the table web control is create to use at runtime for
generating tables with variable numbers of rows & columns.
I've found that the HTML table control is much friendlier to use at design
time, allowing cells to be added via right click.
 
thanks.

Steve C. Orr said:
I've found that the table web control is create to use at runtime for
generating tables with variable numbers of rows & columns.
I've found that the HTML table control is much friendlier to use at design
time, allowing cells to be added via right click.
 
Hi,

I am using the table from webform toolbar and there is always a space at the
bottom when I placed another table with in the first table. I could eliminate
the space between two tables on top, left and right, but i am not able to
remove the space at bottom. Is there any way to eliminate the space at the
bottom?

Thanks
Kris
 
One thing you could try using is CSS. Use

margin-bottom:0px;

to get rid of any extra space below the table. If the table is the last
element on the page, you can also add this to the html BODY tag to get rid
of any extra space that is part of the BODY, if desired. Good Luck!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

catching all errors 6
adding a table to formview 3
how to: 1
a little help please... 1
iframe 3
loosing data on first web page when reloaded. 2
client side 2
running webform page inside MVC framework 1

Back
Top