Problem making table height maximum in IE

Hi anybody
have clue how to make a table height 100% cause height=100% not working in ie though the same is working in fireox here is the sample code ,what I am tring to do make the table with consentrate here to appear as is appearing in fireox.

<html xmlns=“http://www.w3.org/1999/xhtml” >
<head runat=“server”>
<title>Untitled Page</title>
</head>
<body>
<form id=“form1” runat=“server”>
<table border=“1”>
<tr>
<td valign=‘top’ height=‘100%’> <table border=‘1’ cellpadding=‘0’ width=‘150’ height=“150”>

                       &lt;tr&gt;&lt;td colspan="2" align="center"&gt;
                       &lt;img id='Img3' src=' + MainSitePath + "Admin/images/user_images/ + image + ' border='0' Class='drag' width='75' height='75'/&gt;
                        &lt;/td&gt;&lt;/tr&gt;
                        &lt;tr&gt;&lt;td colspan="2" class='blueText' align="center"&gt; + name.ToString() + &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class='SmallText' colspan="2" align="center"&gt;Price :$ + price + "&lt;/td&gt;&lt;/tr&gt;
                        &lt;tr valign="bottom"&gt;&lt;td valign="bottom"&gt;&lt;input type='image' value='View' id='Image5' OnClick='return ViewSearchItem(\\"" + ds.Tables[0].Rows[i]["item_id"].ToString() + "\\",event)' src=" + strPath + /Templates/uc/Images/view1.gif\\" /&gt;&lt;/td&gt;
                        &lt;td valign="bottom"&gt;&lt;input type='image' value='Add to Cart' id='Image6' OnClick='return Item_Details(\\"A\\",\\"I_" + ds.Tables[0].Rows[i]["item_id"].ToString() + "\\")' src=\\"" + strPath + "/Templates/uc/Images/add-to-cart.gif\\" /&gt;&lt;/td&gt;&lt;/tr&gt;


                        &lt;/table&gt;&lt;/td&gt;


  &lt;td valign=top height='100%'&gt;&lt;table border='1' cellpadding='0' height='100%'&gt;

                       &lt;tr&gt;&lt;td colspan="2"&gt;
                       &lt;img id='Img4' src=' + MainSitePath + "Admin/images/user_images/ + image + ' border='0' Class='drag' width='75' height='75'/&gt;
                        &lt;/td&gt;&lt;/tr&gt;
                        &lt;tr&gt;&lt;td colspan="2" class='blueText'&gt;  CONSENTARTE HERE&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class='SmallText' colspan="2"&gt;&lt;/td&gt;&lt;/tr&gt;
                        &lt;tr&gt;&lt;td&gt;&lt;input type='image' value='View' id='Image7' OnClick='return ViewSearchItem(\\"" + ds.Tables[0].Rows[i]["item_id"].ToString() + "\\",event)' src=" + strPath + /Templates/uc/Images/view1.gif\\" /&gt;&lt;/td&gt;
                        &lt;td&gt;&lt;input type='image' value='Add to Cart' id='Image8' OnClick='return Item_Details(\\"A\\",\\"I_" + ds.Tables[0].Rows[i]["item_id"].ToString() + "\\")' src=" + strPath + /Templates/uc/Images/add-to-cart.gif" /&gt;&lt;/td&gt;&lt;/tr&gt;


                        &lt;/table&gt;&lt;/td&gt;


  &lt;td valign='top' height='100%'&gt; &lt;table border='1' cellpadding='0' width='150' height=100%&gt;

                       &lt;tr&gt;&lt;td colspan="2" align="center"&gt;
                       &lt;img id='Img5' src=' + MainSitePath + "Admin/images/user_images/ + image + ' border='0' Class='drag' width='75' height='75'/&gt;
                        &lt;/td&gt;&lt;/tr&gt;
                        &lt;tr&gt;&lt;td colspan="2" class='blueText' align="center"&gt;sd ds s d sd s d  sd  s d s d  s d  sd  s d s d  sd  s d s d  s d s d s d  s d s d s d  sd  s d s d s d s d  sd  s d s d  sd  s d  sd  s d  + name.ToString() + &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class='SmallText' colspan="2" align="center"&gt;Price :$ + price + "&lt;/td&gt;&lt;/tr&gt;
                        &lt;tr valign="bottom"&gt;&lt;td valign="bottom"&gt;&lt;input type='image' value='View' id='Image9' OnClick='return ViewSearchItem(\\"" + ds.Tables[0].Rows[i]["item_id"].ToString() + "\\",event)' src=" + strPath + /Templates/uc/Images/view1.gif\\" /&gt;&lt;/td&gt;
                        &lt;td valign="bottom"&gt;&lt;input type='image' value='Add to Cart' id='Image10' OnClick='return Item_Details(\\"A\\",\\"I_" + ds.Tables[0].Rows[i]["item_id"].ToString() + "\\")' src=\\"" + strPath + "/Templates/uc/Images/add-to-cart.gif\\" /&gt;&lt;/td&gt;&lt;/tr&gt;


                        &lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;
&lt;/form&gt;

</body>
</html>

100% table height is invalid code. It normally works if you don’t use a valid and full doctype (usually IE).

Take a look at this article it may help:
http://apptools.com/examples/tableheight.php

Nadia

thanks nadia height=“100px” works !