Table overflows asp panel
Web Development
1
Posts
1
Posters
0
Views
1
Watching
-
Hi I have an asp panel. I am dynamically adding some html tables with 3 rows and columns to it. When the output is shown, the table doesn't fit the panel correctly. It crosses the bottom boundary of the panel. How to solve this? My panel size is 100 * 100 But depending upon the images in the table, the size of panel changes. My code is ---------------- System.Web.UI.WebControls.Panel Panel1; HtmlTable table = new HtmlTable(); - - - - - table.Height = "100%"; table.Width = "100%"; Panel1.Controls.Add(table); ----------------------------------- thanks in advance anvesh