how can I programatically set the location in which my table is to be displayed on my

sureshcd10

Regular
Joined
Dec 25, 2003
Messages
77
I addeded a Table to my web form using the following code

dim Tb as new Table
me.controls.add(tb)

now how can I programatically set the location in which my table is to be displayed on my webform
table.style= ? what is this how can I set its style dynamically

I am using ASP.NET and Vb.net

:( :(
 
I'm just curious... why are you dynamically creating the table versus just coding it in html? So far I haven't ran into an application that I needed anything else than the standard html table.
 
Back
Top