On Apr 1, 2005 2:44 PM, Krishna, Hari <[EMAIL PROTECTED]> wrote: > > Hi, > > I am trying to put tables side-by-side. > > The problem is, > > I have one table already built (static that has text boxes and button). I > have a button on that table, on click will calculate (java script) and based > on the result, I want to show the results in the table that I will build > dynamically. But I want this table to be placed next to the static table. > > Hope you guys can give me some pointers.
Well, to put two tables side by side you just nest them in another table: <TABLE> <TR> <TD><TABLE><TR><TD>FIRST TABLE DATA CELL</TD></TR></TD> <TD><TABLE><TR><TD>SECOND TABLE DATA CELL</TD></TR></TD> </TR> </TABLE> Not sure if that helps, but perhaps it points you in the right direction? --------------------------------------------------------------------- Home : http://groups.yahoo.com/group/active-server-pages --------------------------------------------------------------------- Post : [email protected] Subscribe : [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] --------------------------------------------------------------------- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/active-server-pages/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
