Hide the Drop-box

Hi All,<br />
<br />
I would like to hide the row in my .jsp page.<br />
<br />
<br />
<tr><td align=right><b>*Application</b></td><br />
<td><select name="apid"><br />
<% appList(request.getRemoteUser().toLowerCase(), out); %><br />
</select></td></tr><br />
<br />
I would like the above table row to be invisible when I call this .jsp page in browser as I don't want to show this row but need to use the apid value in my java page.<br />
<br />
Thanks in advance!<br />
Pratibha Marisetti<br />
(Systems Administrator)<!--content-->Try this:<br />
<br />
<tr style="display: none"><br />
<td align=right><br />
<b>*Application</b><br />
</td> <br />
<td><br />
<select name="apid"> <br />
<% appList(request.getRemoteUser().toLowerCase(), out); %> <br />
</select><br />
</td><br />
</tr><!--content-->
 
Back
Top